diff options
author | Filipp Lepalaan <filipp@mac.com> | 2016-11-11 01:23:31 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2016-11-11 01:23:31 +0200 |
commit | c7432daca9a2cfd5ab506552446700932a99bc33 (patch) | |
tree | e028a0d398b9bcf24d16afb7f47e8f84efdd5615 /servo | |
parent | 21ea1c543918660eaf2d85b3760746557ece039c (diff) | |
download | Servo-c7432daca9a2cfd5ab506552446700932a99bc33.tar.gz Servo-c7432daca9a2cfd5ab506552446700932a99bc33.tar.bz2 Servo-c7432daca9a2cfd5ab506552446700932a99bc33.zip |
Try to use country code for purchase_country
Diffstat (limited to 'servo')
-rw-r--r-- | servo/models/device.py | 76 | ||||
-rwxr-xr-x | servo/templates/devices/search_gsx_warranty.html | 2 | ||||
-rw-r--r-- | servo/tests/test_models.py | 13 |
3 files changed, 50 insertions, 41 deletions
diff --git a/servo/models/device.py b/servo/models/device.py index de8f34e..95635df 100644 --- a/servo/models/device.py +++ b/servo/models/device.py @@ -27,9 +27,8 @@ from servo.models import GsxAccount, Product, DeviceGroup, TaggedItem class Device(models.Model): - """ - The serviceable device - """ + """The serviceable device.""" + # @TODO: unique=True would be nice, but complicated... sn = models.CharField( blank=True, @@ -104,15 +103,15 @@ class Device(models.Model): ) WARRANTY_CHOICES = ( - ('QP', _("Quality Program")), - ('CS', _("Customer Satisfaction")), + ('QP', _("Quality Program")), + ('CS', _("Customer Satisfaction")), ('ALW', _("Apple Limited Warranty")), ('APP', _("AppleCare Protection Plan")), - ('CC', _("Custom Bid Contracts")), - ('CBC', _("Custom Bid Contracts")), # sometimes CC, sometimes CBC? + ('CC', _("Custom Bid Contracts")), + ('CBC', _("Custom Bid Contracts")), # sometimes CC, sometimes CBC? ('WTY', _("3'rd Party Warranty")), ('OOW', _("Out Of Warranty (No Coverage)")), - ('NA', _("Unknown")), + ('NA', _("Unknown")), ) warranty_status = models.CharField( @@ -314,8 +313,8 @@ class Device(models.Model): gsx_act = GsxAccount.get_default_account() ship_to = gsx_act.ship_to - wty = product.warranty(ship_to=ship_to) - model = product.model() + wty = product.warranty(ship_to=ship_to) + model = product.model() if device is None: # serialNumber may sometimes come back empty @@ -328,30 +327,30 @@ class Device(models.Model): device.notes = wty.notes or '' device.notes += wty.csNotes or '' - device.has_onsite = product.has_onsite - device.is_vintage = product.is_vintage - device.description = product.description - device.fmip_active = product.fmip_is_active + device.has_onsite = product.has_onsite + device.is_vintage = product.is_vintage + device.description = product.description + device.fmip_active = product.fmip_is_active - device.slug = slugify(device.description) - device.configuration = wty.configDescription or '' - device.purchase_country = wty.purchaseCountry or '' + device.slug = slugify(device.description) + device.configuration = wty.configDescription or '' + device.purchase_country = countries.by_name(wty.purchaseCountry) - device.config_code = model.configCode - device.product_line = model.productLine.replace(" ", "") + device.config_code = model.configCode + device.product_line = model.productLine.replace(" ", "") device.parts_and_labor_covered = product.parts_and_labor_covered - device.sla_description = wty.slaGroupDescription or '' - device.contract_start_date = wty.contractCoverageStartDate - device.contract_end_date = wty.contractCoverageEndDate - device.onsite_start_date = wty.onsiteStartDate - device.onsite_end_date = wty.onsiteEndDate + device.sla_description = wty.slaGroupDescription or '' + device.contract_start_date = wty.contractCoverageStartDate + device.contract_end_date = wty.contractCoverageEndDate + device.onsite_start_date = wty.onsiteStartDate + device.onsite_end_date = wty.onsiteEndDate if wty.estimatedPurchaseDate: device.purchased_on = wty.estimatedPurchaseDate - device.image_url = wty.imageURL or '' - device.manual_url = wty.manualURL or '' + device.image_url = wty.imageURL or '' + device.manual_url = wty.manualURL or '' device.exploded_view_url = wty.explodedViewURL or '' if wty.warrantyStatus: @@ -370,9 +369,7 @@ class Device(models.Model): return device def is_mac(self): - """ - Returns True if this is a Mac - """ + """Return True if this is a Mac.""" p = gsxws.Product(self.sn) p.description = self.description return p.is_mac @@ -491,18 +488,18 @@ class Device(models.Model): def get_purchase_country(self): """ - Returns device's purchase country - can be 2-letter code (from checkin) or - full country name (from GSX) + Return legacy stored country name. + Or name corresponding to country code """ - from django_countries import countries + pc = self.purchase_country - if len(self.purchase_country) > 2: - return self.purchase_country + if len(pc) > 2: + return pc - return countries.countries.get(self.purchase_country, '') + return countries.name(pc) def run_test(self, test_id, request): + """Run diagnostics on this device.""" GsxAccount.default(request.user) diags = diagnostics.Diagnostics(self.sn) diags.shipTo = request.user.location.gsx_shipto @@ -510,15 +507,14 @@ class Device(models.Model): return diags.run_test() def fetch_tests(self, request): + """Return applicable test suites.""" GsxAccount.default(request.user) diags = diagnostics.Diagnostics(self.sn) diags.shipTo = request.user.location.gsx_shipto return diags.fetch_suites() def get_gsx_repairs(self): - """ - Returns this device's GSX repairs, if any - """ + """Return this device's GSX repairs, if any.""" device = gsxws.Product(self.get_sn()) results = [] @@ -529,7 +525,7 @@ class Device(models.Model): d['customerName'] = p.customerName.encode('utf-8') d['repairStatus'] = p.repairStatus results.append(d) - + return results def __unicode__(self): diff --git a/servo/templates/devices/search_gsx_warranty.html b/servo/templates/devices/search_gsx_warranty.html index d56605e..5cee6f0 100755 --- a/servo/templates/devices/search_gsx_warranty.html +++ b/servo/templates/devices/search_gsx_warranty.html @@ -14,7 +14,7 @@ <dt>{% trans "Warranty Status" %}</dt> <dd>{{ d.get_warranty_status_display }}</dd> <dt>{% trans "Purchase Date" %}</dt> - <dd>{{ d.purchased_on|date:"SHORT_DATE_FORMAT"|default:"-" }}, {{ d.purchase_country|default:"-" }}</dd> + <dd>{{ d.purchased_on|date:"SHORT_DATE_FORMAT"|default:"-" }}, {{ d.get_purchase_country|default:"-" }}</dd> <dt>{% trans "Serial Number" %}</dt> <dd>{{ d.sn }}</dd> <dt>{% trans "Configration" %}</dt> diff --git a/servo/tests/test_models.py b/servo/tests/test_models.py index b0ef6e7..ba3b714 100644 --- a/servo/tests/test_models.py +++ b/servo/tests/test_models.py @@ -7,6 +7,19 @@ from servo.models.common import Configuration from servo.models.order import Order from servo.models.account import User from servo.models.queue import Queue +from servo.models.device import Device + + +class DeviceTests(TestCase): + def test_purchase_country_code(self): + device = Device() + device.purchase_country = 'SE' + self.assertEquals(device.get_purchase_country(), 'Sweden') + + def test_purchase_country(self): + device = Device() + device.purchase_country = 'Sweden' + self.assertEquals(device.get_purchase_country(), 'Sweden') class ConfigurationTests(TestCase): |