| Line 107... |
Line 107... |
| 107 |
print ' void addOrUpdateFreebieForItem(FreebieItem freebieItem)'
|
107 |
print ' void addOrUpdateFreebieForItem(FreebieItem freebieItem)'
|
| 108 |
print ' void addOrUpdateBrandInfo(BrandInfo brandInfo)'
|
108 |
print ' void addOrUpdateBrandInfo(BrandInfo brandInfo)'
|
| 109 |
print ' getBrandInfo()'
|
109 |
print ' getBrandInfo()'
|
| 110 |
print ' StorePricing getStorePricing(i64 itemId)'
|
110 |
print ' StorePricing getStorePricing(i64 itemId)'
|
| 111 |
print ' getStorePricings( itemIds)'
|
111 |
print ' getStorePricings( itemIds)'
|
| 112 |
print ' void updateStorePricing(StorePricing sp)'
|
112 |
print ' void updateStorePricing(StorePricing sp, bool allColors)'
|
| 113 |
print ' getAllAmazonListedItems()'
|
113 |
print ' getAllAmazonListedItems()'
|
| 114 |
print ' Amazonlisted getAmazonItemDetails(i64 itemId)'
|
114 |
print ' Amazonlisted getAmazonItemDetails(i64 itemId)'
|
| 115 |
print ' void updateAmazonItemDetails(i64 itemId, double fbaPrice, double sellingPrice, bool isFba, bool isNonFba, bool isInventoryOverride)'
|
115 |
print ' void updateAmazonItemDetails(i64 itemId, double fbaPrice, double sellingPrice, bool isFba, bool isNonFba, bool isInventoryOverride, i64 handlingTime, bool isCustomTime)'
|
| 116 |
print ' void addAmazonItem(Amazonlisted amazonlisted)'
|
116 |
print ' void addAmazonItem(Amazonlisted amazonlisted)'
|
| 117 |
print ' getAsinItems()'
|
117 |
print ' getAsinItems()'
|
| 118 |
print ' getAllFbaListedItems()'
|
118 |
print ' getAllFbaListedItems()'
|
| 119 |
print ' getAllNonFbaListedItems()'
|
119 |
print ' getAllNonFbaListedItems()'
|
| 120 |
print ''
|
120 |
print ''
|
| Line 694... |
Line 694... |
| 694 |
print 'getStorePricings requires 1 args'
|
694 |
print 'getStorePricings requires 1 args'
|
| 695 |
sys.exit(1)
|
695 |
sys.exit(1)
|
| 696 |
pp.pprint(client.getStorePricings(eval(args[0]),))
|
696 |
pp.pprint(client.getStorePricings(eval(args[0]),))
|
| 697 |
|
697 |
|
| 698 |
elif cmd == 'updateStorePricing':
|
698 |
elif cmd == 'updateStorePricing':
|
| 699 |
if len(args) != 1:
|
699 |
if len(args) != 2:
|
| 700 |
print 'updateStorePricing requires 1 args'
|
700 |
print 'updateStorePricing requires 2 args'
|
| 701 |
sys.exit(1)
|
701 |
sys.exit(1)
|
| 702 |
pp.pprint(client.updateStorePricing(eval(args[0]),))
|
702 |
pp.pprint(client.updateStorePricing(eval(args[0]),eval(args[1]),))
|
| 703 |
|
703 |
|
| 704 |
elif cmd == 'getAllAmazonListedItems':
|
704 |
elif cmd == 'getAllAmazonListedItems':
|
| 705 |
if len(args) != 0:
|
705 |
if len(args) != 0:
|
| 706 |
print 'getAllAmazonListedItems requires 0 args'
|
706 |
print 'getAllAmazonListedItems requires 0 args'
|
| 707 |
sys.exit(1)
|
707 |
sys.exit(1)
|
| Line 712... |
Line 712... |
| 712 |
print 'getAmazonItemDetails requires 1 args'
|
712 |
print 'getAmazonItemDetails requires 1 args'
|
| 713 |
sys.exit(1)
|
713 |
sys.exit(1)
|
| 714 |
pp.pprint(client.getAmazonItemDetails(eval(args[0]),))
|
714 |
pp.pprint(client.getAmazonItemDetails(eval(args[0]),))
|
| 715 |
|
715 |
|
| 716 |
elif cmd == 'updateAmazonItemDetails':
|
716 |
elif cmd == 'updateAmazonItemDetails':
|
| 717 |
if len(args) != 6:
|
717 |
if len(args) != 8:
|
| 718 |
print 'updateAmazonItemDetails requires 6 args'
|
718 |
print 'updateAmazonItemDetails requires 8 args'
|
| 719 |
sys.exit(1)
|
719 |
sys.exit(1)
|
| 720 |
pp.pprint(client.updateAmazonItemDetails(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),eval(args[4]),eval(args[5]),))
|
720 |
pp.pprint(client.updateAmazonItemDetails(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),eval(args[4]),eval(args[5]),eval(args[6]),eval(args[7]),))
|
| 721 |
|
721 |
|
| 722 |
elif cmd == 'addAmazonItem':
|
722 |
elif cmd == 'addAmazonItem':
|
| 723 |
if len(args) != 1:
|
723 |
if len(args) != 1:
|
| 724 |
print 'addAmazonItem requires 1 args'
|
724 |
print 'addAmazonItem requires 1 args'
|
| 725 |
sys.exit(1)
|
725 |
sys.exit(1)
|