diff options
-rw-r--r-- | gsxws/parts.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gsxws/parts.py b/gsxws/parts.py index acf9957..c84910e 100644 --- a/gsxws/parts.py +++ b/gsxws/parts.py @@ -6,6 +6,14 @@ import tempfile from lookups import Lookup from core import GsxObject, GsxError +REASON_CODES = ( + ('A', 'Part not needed'), + ('B', 'Duplicated part'), + ('C', 'Added wrong part'), + ('D', 'Tried to cancel order'), + ('E', 'Customer refused order'), +) + IMAGE_URL = "https://km.support.apple.com.edgekey.net/kb/imageService.jsp?image=%s" class Part(GsxObject): |