| Line 174... |
Line 174... |
| 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 ' getRechargeTransactions(i64 storeId)'
|
| - |
|
179 |
print ' getRechargeTrans(i64 storeId, i64 startDate, i64 endDate, RechargeOrderStatus status)'
|
| 179 |
print ' RechargeTransaction getRechargeTransaction(i64 rechargeId)'
|
180 |
print ' RechargeTransaction getRechargeTransaction(i64 rechargeId)'
|
| 180 |
print ' getFRCs(i64 circleId, i64 operatorId)'
|
181 |
print ' getFRCs(i64 circleId, i64 operatorId)'
|
| 181 |
print ' HotspotStore getHotspotStore(i64 id, string hotspotid)'
|
182 |
print ' HotspotStore getHotspotStore(i64 id, string hotspotid)'
|
| 182 |
print ' TelecomCircle getTelecomCircle(i64 id, string code)'
|
183 |
print ' TelecomCircle getTelecomCircle(i64 id, string code)'
|
| 183 |
print ' string retrieveHotspotRechargeInvoice(i64 rechargeId)'
|
184 |
print ' string retrieveHotspotRechargeInvoice(i64 rechargeId)'
|
| Line 1159... |
Line 1160... |
| 1159 |
if len(args) != 1:
|
1160 |
if len(args) != 1:
|
| 1160 |
print 'getRechargeTransactions requires 1 args'
|
1161 |
print 'getRechargeTransactions requires 1 args'
|
| 1161 |
sys.exit(1)
|
1162 |
sys.exit(1)
|
| 1162 |
pp.pprint(client.getRechargeTransactions(eval(args[0]),))
|
1163 |
pp.pprint(client.getRechargeTransactions(eval(args[0]),))
|
| 1163 |
|
1164 |
|
| - |
|
1165 |
elif cmd == 'getRechargeTrans':
|
| - |
|
1166 |
if len(args) != 4:
|
| - |
|
1167 |
print 'getRechargeTrans requires 4 args'
|
| - |
|
1168 |
sys.exit(1)
|
| - |
|
1169 |
pp.pprint(client.getRechargeTrans(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),))
|
| - |
|
1170 |
|
| 1164 |
elif cmd == 'getRechargeTransaction':
|
1171 |
elif cmd == 'getRechargeTransaction':
|
| 1165 |
if len(args) != 1:
|
1172 |
if len(args) != 1:
|
| 1166 |
print 'getRechargeTransaction requires 1 args'
|
1173 |
print 'getRechargeTransaction requires 1 args'
|
| 1167 |
sys.exit(1)
|
1174 |
sys.exit(1)
|
| 1168 |
pp.pprint(client.getRechargeTransaction(eval(args[0]),))
|
1175 |
pp.pprint(client.getRechargeTransaction(eval(args[0]),))
|