diff options
-rw-r--r-- | gsxws/core.py | 3 | ||||
-rw-r--r-- | gsxws/products.py | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gsxws/core.py b/gsxws/core.py index 086df10..afb1521 100644 --- a/gsxws/core.py +++ b/gsxws/core.py @@ -400,6 +400,9 @@ class GsxObject(object): except KeyError: raise AttributeError("Invalid attribute: %s" % name) + def unset(self, prop): + del(self._data[prop]) + def _submit(self, arg, method, ret=None, raw=False): "Shortcut for submitting a GsxObject" self._req = GsxRequest(**{arg: self}) diff --git a/gsxws/products.py b/gsxws/products.py index d7ef569..d1b5b01 100644 --- a/gsxws/products.py +++ b/gsxws/products.py @@ -73,8 +73,9 @@ class Product(object): """ if self.should_check_activation: ad = self.activation() + self._gsx.serialNumber = ad.serialNumber # "Please enter either a serial number or an IMEI number but not both." - return Product(ad.serialNumber).warranty() + self._gsx.unset('alternateDeviceId') if ship_to is not None: self._gsx.shipTo = ship_to @@ -91,6 +92,7 @@ class Product(object): self._gsx.unitReceivedDate = date_received self._gsx._submit("unitDetail", "WarrantyStatus", "warrantyDetailInfo") + self.warrantyDetails = self._gsx._req.objects self.imageURL = self.warrantyDetails.imageURL self.productDescription = self.warrantyDetails.productDescription |