| Line 173... |
Line 173... |
| 173 |
print ' string getDocument(i64 docType, i64 docSource)'
|
173 |
print ' string getDocument(i64 docType, i64 docSource)'
|
| 174 |
print ' bool changeShippingAddress(i64 orderId, string line1, string line2, string city, string state, string pin)'
|
174 |
print ' bool changeShippingAddress(i64 orderId, string line1, string line2, string city, string state, string pin)'
|
| 175 |
print ' string retrieveInvoice(i64 orderId, i64 userId)'
|
175 |
print ' string retrieveInvoice(i64 orderId, i64 userId)'
|
| 176 |
print ' receiveUpdatesForRedExpress(string awbNumber)'
|
176 |
print ' receiveUpdatesForRedExpress(string awbNumber)'
|
| 177 |
print ' RechargeTransaction createRechargeTransaction(RechargeTransaction thriftRechargeTransaction)'
|
177 |
print ' RechargeTransaction createRechargeTransaction(RechargeTransaction thriftRechargeTransaction)'
|
| - |
|
178 |
print ' getRechargeTransactions(i64 storeId)'
|
| 178 |
print ' RechargeTransaction getRechargeTransaction(i64 rechargeId)'
|
179 |
print ' RechargeTransaction getRechargeTransaction(i64 rechargeId)'
|
| 179 |
print ' getFRCs(i64 circleId, i64 operatorId)'
|
180 |
print ' getFRCs(i64 circleId, i64 operatorId)'
|
| 180 |
print ''
|
181 |
print ''
|
| 181 |
sys.exit(0)
|
182 |
sys.exit(0)
|
| 182 |
|
183 |
|
| Line 1149... |
Line 1150... |
| 1149 |
if len(args) != 1:
|
1150 |
if len(args) != 1:
|
| 1150 |
print 'createRechargeTransaction requires 1 args'
|
1151 |
print 'createRechargeTransaction requires 1 args'
|
| 1151 |
sys.exit(1)
|
1152 |
sys.exit(1)
|
| 1152 |
pp.pprint(client.createRechargeTransaction(eval(args[0]),))
|
1153 |
pp.pprint(client.createRechargeTransaction(eval(args[0]),))
|
| 1153 |
|
1154 |
|
| - |
|
1155 |
elif cmd == 'getRechargeTransactions':
|
| - |
|
1156 |
if len(args) != 1:
|
| - |
|
1157 |
print 'getRechargeTransactions requires 1 args'
|
| - |
|
1158 |
sys.exit(1)
|
| - |
|
1159 |
pp.pprint(client.getRechargeTransactions(eval(args[0]),))
|
| - |
|
1160 |
|
| 1154 |
elif cmd == 'getRechargeTransaction':
|
1161 |
elif cmd == 'getRechargeTransaction':
|
| 1155 |
if len(args) != 1:
|
1162 |
if len(args) != 1:
|
| 1156 |
print 'getRechargeTransaction requires 1 args'
|
1163 |
print 'getRechargeTransaction requires 1 args'
|
| 1157 |
sys.exit(1)
|
1164 |
sys.exit(1)
|
| 1158 |
pp.pprint(client.getRechargeTransaction(eval(args[0]),))
|
1165 |
pp.pprint(client.getRechargeTransaction(eval(args[0]),))
|