aboutsummaryrefslogtreecommitdiffstats
path: root/gsxws/objectify.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2014-05-13 22:02:05 +0300
committerFilipp Lepalaan <filipp@mac.com>2014-05-13 22:02:05 +0300
commit269216c477a8506c529fa83665ec3405fcbaeda7 (patch)
treea7a6fd8da7be982fd1aa20d87d6c21c21e1d1a3b /gsxws/objectify.py
parent2e8cef4bddba9213495fa8f9fcd4938311ac606f (diff)
downloadpy-gsxws-269216c477a8506c529fa83665ec3405fcbaeda7.tar.gz
py-gsxws-269216c477a8506c529fa83665ec3405fcbaeda7.tar.bz2
py-gsxws-269216c477a8506c529fa83665ec3405fcbaeda7.zip
Fix iOS diagnostics through Product.diagnostics()
Diffstat (limited to 'gsxws/objectify.py')
-rw-r--r--gsxws/objectify.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/gsxws/objectify.py b/gsxws/objectify.py
index e73adb3..19f6b12 100644
--- a/gsxws/objectify.py
+++ b/gsxws/objectify.py
@@ -9,6 +9,7 @@ from lxml import objectify
from datetime import datetime
DATETIME_TYPES = ('dispatchSentDate',)
+DIAGS_TIMESTAMP_TYPES = ('startTimeStamp', 'endTimeStamp',)
STRING_TYPES = ('alternateDeviceId', 'imeiNumber',)
BASE64_TYPES = ('packingList', 'proformaFileData', 'returnLabelFileData',)
FLOAT_TYPES = ('totalFromOrder', 'exchangePrice', 'stockPrice', 'netPrice',)
@@ -88,6 +89,11 @@ def gsx_timestamp(value):
return datetime.strptime(value, "%m/%d/%y %I:%M %p")
+def gsx_diags_timestamp(value):
+ # It is always in GMT and in format DD-MMM-YY HH24:MM:SS
+ return datetime.strptime(value, "%d-%b-%y %I:%M:%S")
+
+
class GsxElement(objectify.ObjectifiedElement):
"""
Each element in the GSX response tree should be a GsxElement
@@ -121,6 +127,8 @@ class GsxElement(objectify.ObjectifiedElement):
if name in DATETIME_TYPES:
return gsx_datetime(result)
+ if name in DIAGS_TIMESTAMP_TYPES:
+ return gsx_diags_timestamp(result)
if name in BASE64_TYPES:
return gsx_attachment(result)
if name in FLOAT_TYPES: