| Line 143... |
Line 143... |
| 143 |
print ' void setOrderAttributeForTransaction(i64 transactionId, Attribute attribute)'
|
143 |
print ' void setOrderAttributeForTransaction(i64 transactionId, Attribute attribute)'
|
| 144 |
print ' getReceivePendingOrders(i64 storeId)'
|
144 |
print ' getReceivePendingOrders(i64 storeId)'
|
| 145 |
print ' getReceivedAtStoreOrders(i64 storeId)'
|
145 |
print ' getReceivedAtStoreOrders(i64 storeId)'
|
| 146 |
print ' getOrdersCollectionAtStore(i64 storeId, i64 fromDate, i64 toDate, bool onlyCod)'
|
146 |
print ' getOrdersCollectionAtStore(i64 storeId, i64 fromDate, i64 toDate, bool onlyCod)'
|
| 147 |
print ' string getOrderAttributeValue(i64 orderId, string attributeName)'
|
147 |
print ' string getOrderAttributeValue(i64 orderId, string attributeName)'
|
| - |
|
148 |
print ' bool changeJacketNumber(i64 orderId, i64 jacketNumber)'
|
| - |
|
149 |
print ' bool markOrderAsRtoInTransit(i64 orderId)'
|
| 148 |
print ' void acceptOrderForItem(i64 itemId, i64 quantity, i64 fulfilmentWarehouseId, i64 billingWarehouseId)'
|
150 |
print ' void acceptOrderForItem(i64 itemId, i64 quantity, i64 fulfilmentWarehouseId, i64 billingWarehouseId)'
|
| 149 |
print ' RechargeOrder createRechargeOrder(RechargeOrder rechargeOrder)'
|
151 |
print ' RechargeOrder createRechargeOrder(RechargeOrder rechargeOrder)'
|
| 150 |
print ' void updateRechargeOrderStatus(i64 rechargeOrderId, RechargeOrderStatus rechargeOrderStatus)'
|
152 |
print ' void updateRechargeOrderStatus(i64 rechargeOrderId, RechargeOrderStatus rechargeOrderStatus)'
|
| 151 |
print ' RechargeResponse activateRechargeTxn( rechargeCoupons)'
|
153 |
print ' RechargeResponse activateRechargeTxn( rechargeCoupons)'
|
| 152 |
print ' getRechargeOrders(i64 customerId)'
|
154 |
print ' getRechargeOrders(i64 customerId)'
|
| Line 943... |
Line 945... |
| 943 |
if len(args) != 2:
|
945 |
if len(args) != 2:
|
| 944 |
print 'getOrderAttributeValue requires 2 args'
|
946 |
print 'getOrderAttributeValue requires 2 args'
|
| 945 |
sys.exit(1)
|
947 |
sys.exit(1)
|
| 946 |
pp.pprint(client.getOrderAttributeValue(eval(args[0]),args[1],))
|
948 |
pp.pprint(client.getOrderAttributeValue(eval(args[0]),args[1],))
|
| 947 |
|
949 |
|
| - |
|
950 |
elif cmd == 'changeJacketNumber':
|
| - |
|
951 |
if len(args) != 2:
|
| - |
|
952 |
print 'changeJacketNumber requires 2 args'
|
| - |
|
953 |
sys.exit(1)
|
| - |
|
954 |
pp.pprint(client.changeJacketNumber(eval(args[0]),eval(args[1]),))
|
| - |
|
955 |
|
| - |
|
956 |
elif cmd == 'markOrderAsRtoInTransit':
|
| - |
|
957 |
if len(args) != 1:
|
| - |
|
958 |
print 'markOrderAsRtoInTransit requires 1 args'
|
| - |
|
959 |
sys.exit(1)
|
| - |
|
960 |
pp.pprint(client.markOrderAsRtoInTransit(eval(args[0]),))
|
| - |
|
961 |
|
| 948 |
elif cmd == 'acceptOrderForItem':
|
962 |
elif cmd == 'acceptOrderForItem':
|
| 949 |
if len(args) != 4:
|
963 |
if len(args) != 4:
|
| 950 |
print 'acceptOrderForItem requires 4 args'
|
964 |
print 'acceptOrderForItem requires 4 args'
|
| 951 |
sys.exit(1)
|
965 |
sys.exit(1)
|
| 952 |
pp.pprint(client.acceptOrderForItem(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),))
|
966 |
pp.pprint(client.acceptOrderForItem(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),))
|