| Line 94... |
Line 94... |
| 94 |
print ' getAllReturnOrders(bool onlyNotProcessed, i64 fromDate, i64 toDate)'
|
94 |
print ' getAllReturnOrders(bool onlyNotProcessed, i64 fromDate, i64 toDate)'
|
| 95 |
print ' ReturnOrder getReturnOrder(i64 id)'
|
95 |
print ' ReturnOrder getReturnOrder(i64 id)'
|
| 96 |
print ' void processReturn(i64 returnOrderId)'
|
96 |
print ' void processReturn(i64 returnOrderId)'
|
| 97 |
print ' Order updateWeight(i64 orderId, double weight)'
|
97 |
print ' Order updateWeight(i64 orderId, double weight)'
|
| 98 |
print ' Order changeItem(i64 orderId, i64 itemId)'
|
98 |
print ' Order changeItem(i64 orderId, i64 itemId)'
|
| - |
|
99 |
print ' Order changeCourierProvider(i64 orderId, i64 providerId)'
|
| 99 |
print ' Order shiftToWarehouse(i64 orderId, i64 warehouseId)'
|
100 |
print ' Order shiftToWarehouse(i64 orderId, i64 warehouseId)'
|
| 100 |
print ' bool addDelayReason(i64 orderId, DelayReason delayReason, i64 furtherDelay, string delayReasonText)'
|
101 |
print ' bool addDelayReason(i64 orderId, DelayReason delayReason, i64 furtherDelay, string delayReasonText)'
|
| 101 |
print ' reconcileCodCollection( collectedAmountMap, string xferBy, string xferTxnId, i64 xferDate)'
|
102 |
print ' reconcileCodCollection( collectedAmountMap, string xferBy, string xferTxnId, i64 xferDate)'
|
| 102 |
print ' getTransactionsRequiringExtraProcessing(ExtraTransactionProcessingType category)'
|
103 |
print ' getTransactionsRequiringExtraProcessing(ExtraTransactionProcessingType category)'
|
| 103 |
print ' void markTransactionAsProcessed(i64 transactionId, ExtraTransactionProcessingType category)'
|
104 |
print ' void markTransactionAsProcessed(i64 transactionId, ExtraTransactionProcessingType category)'
|
| Line 708... |
Line 709... |
| 708 |
if len(args) != 2:
|
709 |
if len(args) != 2:
|
| 709 |
print 'changeItem requires 2 args'
|
710 |
print 'changeItem requires 2 args'
|
| 710 |
sys.exit(1)
|
711 |
sys.exit(1)
|
| 711 |
pp.pprint(client.changeItem(eval(args[0]),eval(args[1]),))
|
712 |
pp.pprint(client.changeItem(eval(args[0]),eval(args[1]),))
|
| 712 |
|
713 |
|
| - |
|
714 |
elif cmd == 'changeCourierProvider':
|
| - |
|
715 |
if len(args) != 2:
|
| - |
|
716 |
print 'changeCourierProvider requires 2 args'
|
| - |
|
717 |
sys.exit(1)
|
| - |
|
718 |
pp.pprint(client.changeCourierProvider(eval(args[0]),eval(args[1]),))
|
| - |
|
719 |
|
| 713 |
elif cmd == 'shiftToWarehouse':
|
720 |
elif cmd == 'shiftToWarehouse':
|
| 714 |
if len(args) != 2:
|
721 |
if len(args) != 2:
|
| 715 |
print 'shiftToWarehouse requires 2 args'
|
722 |
print 'shiftToWarehouse requires 2 args'
|
| 716 |
sys.exit(1)
|
723 |
sys.exit(1)
|
| 717 |
pp.pprint(client.shiftToWarehouse(eval(args[0]),eval(args[1]),))
|
724 |
pp.pprint(client.shiftToWarehouse(eval(args[0]),eval(args[1]),))
|