| Line 249... |
Line 249... |
| 249 |
print ' AmazonFbaSalesSnapshot getAmazonFbaSalesLatestSnapshotForItemLocationWise(i64 item_id, i64 location)'
|
249 |
print ' AmazonFbaSalesSnapshot getAmazonFbaSalesLatestSnapshotForItemLocationWise(i64 item_id, i64 location)'
|
| 250 |
print ' bool changeEasyshipMfnOrderTxnStatus(i64 transactionId, TransactionStatus status, string description, i64 pickUp, OrderType orderType, OrderSource source, i64 shipTimestamp, i64 deliveryTimeStamp)'
|
250 |
print ' bool changeEasyshipMfnOrderTxnStatus(i64 transactionId, TransactionStatus status, string description, i64 pickUp, OrderType orderType, OrderSource source, i64 shipTimestamp, i64 deliveryTimeStamp)'
|
| 251 |
print ' void updateAmazonFbaOrdersReturns( fbaOrderReturns)'
|
251 |
print ' void updateAmazonFbaOrdersReturns( fbaOrderReturns)'
|
| 252 |
print ' getAllAmazonFbaOrderReturnsByCurrentTime(i64 insertionTimestamp)'
|
252 |
print ' getAllAmazonFbaOrderReturnsByCurrentTime(i64 insertionTimestamp)'
|
| 253 |
print ' getTotalSaleReturnsFbaSkusCurentTime(i64 insertionTimestamp)'
|
253 |
print ' getTotalSaleReturnsFbaSkusCurentTime(i64 insertionTimestamp)'
|
| - |
|
254 |
print ' getVerificationPendingOrdersFK()'
|
| 254 |
print ''
|
255 |
print ''
|
| 255 |
sys.exit(0)
|
256 |
sys.exit(0)
|
| 256 |
|
257 |
|
| 257 |
pp = pprint.PrettyPrinter(indent = 2)
|
258 |
pp = pprint.PrettyPrinter(indent = 2)
|
| 258 |
host = 'localhost'
|
259 |
host = 'localhost'
|
| Line 1679... |
Line 1680... |
| 1679 |
if len(args) != 1:
|
1680 |
if len(args) != 1:
|
| 1680 |
print 'getTotalSaleReturnsFbaSkusCurentTime requires 1 args'
|
1681 |
print 'getTotalSaleReturnsFbaSkusCurentTime requires 1 args'
|
| 1681 |
sys.exit(1)
|
1682 |
sys.exit(1)
|
| 1682 |
pp.pprint(client.getTotalSaleReturnsFbaSkusCurentTime(eval(args[0]),))
|
1683 |
pp.pprint(client.getTotalSaleReturnsFbaSkusCurentTime(eval(args[0]),))
|
| 1683 |
|
1684 |
|
| - |
|
1685 |
elif cmd == 'getVerificationPendingOrdersFK':
|
| - |
|
1686 |
if len(args) != 0:
|
| - |
|
1687 |
print 'getVerificationPendingOrdersFK requires 0 args'
|
| - |
|
1688 |
sys.exit(1)
|
| - |
|
1689 |
pp.pprint(client.getVerificationPendingOrdersFK())
|
| - |
|
1690 |
|
| 1684 |
else:
|
1691 |
else:
|
| 1685 |
print 'Unrecognized method %s' % cmd
|
1692 |
print 'Unrecognized method %s' % cmd
|
| 1686 |
sys.exit(1)
|
1693 |
sys.exit(1)
|
| 1687 |
|
1694 |
|
| 1688 |
transport.close()
|
1695 |
transport.close()
|