diff options
author | Filipp Lepalaan <f@230.to> | 2013-03-18 20:45:10 +0200 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-03-18 20:45:10 +0200 |
commit | 7aa6ddee0223f3ab828c14bb406efc24fc942295 (patch) | |
tree | c1a068310118d31084c76651d61d01d02c9146b4 | |
parent | 3398e23fae2f8d8edeca06241f43ad1b63defb1d (diff) | |
download | py-gsxws-7aa6ddee0223f3ab828c14bb406efc24fc942295.tar.gz py-gsxws-7aa6ddee0223f3ab828c14bb406efc24fc942295.tar.bz2 py-gsxws-7aa6ddee0223f3ab828c14bb406efc24fc942295.zip |
Implemented update_carryin
-rwxr-xr-x | gsxws.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -574,11 +574,11 @@ class Repair(GsxObject): RFPU Ready for Pickup """ dt = self._make_type('ns1:updateCarryInRequestType') + + # Merge old and new data (old data should have Dispatch ID) dt.repairData = dict(self.data.items() + newdata.items()) - result = CLIENT.service.CarryInRepairUpdate(dt) - print result - return result - #return self.submit('CarryInRepairUpdate', dt) + + return self.submit('CarryInRepairUpdate', dt, 'repairConfirmation') def update_kgb_sn(self, sn): """ |