diff options
author | Filipp Lepalaan <f@230.to> | 2013-05-10 10:53:18 +0300 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-05-10 10:53:18 +0300 |
commit | 452005bbb83059913d4c8b7648d9e368936e53da (patch) | |
tree | 76154292190e86576959500299d922fd18938e1e /repairs.py | |
parent | 2680b7d1925b4317715dcc89b2af4aec1646d8cb (diff) | |
download | py-gsxws-452005bbb83059913d4c8b7648d9e368936e53da.tar.gz py-gsxws-452005bbb83059913d4c8b7648d9e368936e53da.tar.bz2 py-gsxws-452005bbb83059913d4c8b7648d9e368936e53da.zip |
Some refactoring
Diffstat (limited to 'repairs.py')
-rw-r--r-- | repairs.py | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -68,6 +68,15 @@ class Repair(GsxObject): orderLines = [] + 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"), + ) + def get_data(self): return {'repairData': self.data} |