From edb0fc6fa64d24119964e074d0740790c7fe73bd Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Sun, 8 Sep 2013 16:08:16 +0300 Subject: Put properties back --- gsxws/products.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gsxws/products.py b/gsxws/products.py index c16485e..12a8aa3 100644 --- a/gsxws/products.py +++ b/gsxws/products.py @@ -144,22 +144,28 @@ class Product(GsxObject): import re return ad.unlocked or (re.search("Unlock", ad.nextTetherPolicyDetails) is not None) + @property def is_vintage(self): - title = self.warrantyDetails.productDescription + title = self.warrantyDetails.productDescription or '' return title.startswith('~VIN,') + @property def is_locked(self): return not self.is_unlocked() + @property def parts_covered(self): return self.warrantyDetails.partCovered is True + @property def labor_covered(self): return self.warrantyDetails.laborCovered is True + @property def parts_and_labor_covered(self): return self.parts_covered and self.labor_covered + @property def has_onsite(self): from datetime import date try: -- cgit v1.2.3