aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-11-18 22:43:15 +0200
committerFilipp Lepalaan <filipp@mac.com>2015-11-18 22:43:15 +0200
commitd036009b8bd13e360d3336b9aa97d49e1386551a (patch)
treeca249136a57297a23a84fdcf7e831a459748dc0f
parent8bf05b0b5c600445c28cf7e2033c1b6213d11982 (diff)
downloadpy-gsxws-d036009b8bd13e360d3336b9aa97d49e1386551a.tar.gz
py-gsxws-d036009b8bd13e360d3336b9aa97d49e1386551a.tar.bz2
py-gsxws-d036009b8bd13e360d3336b9aa97d49e1386551a.zip
Cleanup
-rw-r--r--gsxws/core.py3
-rw-r--r--gsxws/repairs.py24
2 files changed, 15 insertions, 12 deletions
diff --git a/gsxws/core.py b/gsxws/core.py
index 17f6556..4e18bdd 100644
--- a/gsxws/core.py
+++ b/gsxws/core.py
@@ -484,6 +484,9 @@ class GsxObject(object):
req = GsxRequest(**{'GsxObject': self})
return ET.tostring(req.data, encoding='utf-8')
+ def __str__(self):
+ return str(self._data)
+
class GsxRequestObject(GsxObject):
"The GSX-friendly representation of this GsxObject"
diff --git a/gsxws/repairs.py b/gsxws/repairs.py
index 768ff06..f5baf48 100644
--- a/gsxws/repairs.py
+++ b/gsxws/repairs.py
@@ -8,12 +8,12 @@ from core import GsxObject, GsxError, validate
from lookups import Lookup
REPAIR_TYPES = (
- ('CA', "Carry-In/Non-Replinished"),
- ('NE', "Return Before Replace"),
- ('NT', "No Trouble Found"),
- ('ON', "Onsite (Indirect/Direct)"),
- ('RR', "Repair Or Replace/Whole Unit Mail-In"),
- ('WH', "Mail-In"),
+ ('CA', 'Carry-In/Non-Replinished'),
+ ('NE', 'Return Before Replace'),
+ ('NT', 'No Trouble Found'),
+ ('ON', 'Onsite (Indirect/Direct)'),
+ ('RR', 'Repair Or Replace/Whole Unit Mail-In'),
+ ('WH', 'Mail-In'),
)
REPAIR_STATUSES = (
@@ -348,13 +348,13 @@ class RepairOrReplace(Repair):
The submissions creates a GSX RoR Repair in the system.
"""
COVERAGE_OPTIONS = (
- ('N', 'No Damage'),
- ('A1', 'Battery Service'),
- ('A2', 'Returnable Damage'),
- ('A3', 'Non-returnable Damage'),
- ('X', 'Non-returnable damage covered by AppleCare+'),
+ ('N', 'No Damage'),
+ ('A1', 'Battery Service'),
+ ('A2', 'Returnable Damage'),
+ ('A3', 'Non-returnable Damage'),
+ ('X', 'Non-returnable damage covered by AppleCare+'),
('RPL', 'Replace'),
- ('Z', 'Override to Out of Warranty when part is covered by Variable Warranty')
+ ('Z', 'Override to Out of Warranty when part is covered by Variable Warranty'),
)
def create(self):