Subversion Repositories SmartDukaan

Rev

Rev 23310 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23310 Rev 23313
Line 221... Line 221...
221
  print '  void bulkUpdateCatalog( bulkUploadCatalog)'
221
  print '  void bulkUpdateCatalog( bulkUploadCatalog)'
222
  print '   getWarrantyInfoForItem(i64 catalogItemId, ItemCondition itemCondition)'
222
  print '   getWarrantyInfoForItem(i64 catalogItemId, ItemCondition itemCondition)'
223
  print '   getWarrantyInfoForItemList( catalogItemIds, ItemCondition itemCondition)'
223
  print '   getWarrantyInfoForItemList( catalogItemIds, ItemCondition itemCondition)'
224
  print '   getStateTaxRate( itemIds, i64 stateId)'
224
  print '   getStateTaxRate( itemIds, i64 stateId)'
225
  print '   getIgstTaxRate( itemIds)'
225
  print '   getIgstTaxRate( itemIds)'
226
  print '  void persistStateGstRate(StateGstRate stateGstRate)'
226
  print '  void persistGstRate( stateGstRates)'
227
  print '   getHsnCodesByCategory(i64 categoryId)'
227
  print '   getHsnCodesByCategory(i64 categoryId)'
228
  print '   getAllFofoDeals( itemIds,  tagIds)'
228
  print '   getAllFofoDeals( itemIds,  tagIds)'
229
  print ''
229
  print ''
230
  sys.exit(0)
230
  sys.exit(0)
231
 
231
 
Line 1486... Line 1486...
1486
  if len(args) != 1:
1486
  if len(args) != 1:
1487
    print 'getIgstTaxRate requires 1 args'
1487
    print 'getIgstTaxRate requires 1 args'
1488
    sys.exit(1)
1488
    sys.exit(1)
1489
  pp.pprint(client.getIgstTaxRate(eval(args[0]),))
1489
  pp.pprint(client.getIgstTaxRate(eval(args[0]),))
1490
 
1490
 
1491
elif cmd == 'persistStateGstRate':
1491
elif cmd == 'persistGstRate':
1492
  if len(args) != 1:
1492
  if len(args) != 1:
1493
    print 'persistStateGstRate requires 1 args'
1493
    print 'persistGstRate requires 1 args'
1494
    sys.exit(1)
1494
    sys.exit(1)
1495
  pp.pprint(client.persistStateGstRate(eval(args[0]),))
1495
  pp.pprint(client.persistGstRate(eval(args[0]),))
1496
 
1496
 
1497
elif cmd == 'getHsnCodesByCategory':
1497
elif cmd == 'getHsnCodesByCategory':
1498
  if len(args) != 1:
1498
  if len(args) != 1:
1499
    print 'getHsnCodesByCategory requires 1 args'
1499
    print 'getHsnCodesByCategory requires 1 args'
1500
    sys.exit(1)
1500
    sys.exit(1)