Subversion Repositories SmartDukaan

Rev

Rev 23152 | Rev 23310 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23152 Rev 23306
Line 222... Line 222...
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 '  StateGstRates getGstRatesByState(i64 stateId)'
224
  print '  StateGstRates getGstRatesByState(i64 stateId)'
225
  print '   getStateTaxRate( itemIds, i64 stateId)'
225
  print '   getStateTaxRate( itemIds, i64 stateId)'
226
  print '   getIgstTaxRate( itemIds)'
226
  print '   getIgstTaxRate( itemIds)'
-
 
227
  print '  void persistStateGstRate(StateGstRate stateGstRate)'
227
  print '   getInterStateGstRates()'
228
  print '   getInterStateGstRates()'
228
  print '   getHsnCodesByCategory(i64 categoryId)'
229
  print '   getHsnCodesByCategory(i64 categoryId)'
229
  print '   getAllFofoDeals( itemIds,  tagIds)'
230
  print '   getAllFofoDeals( itemIds,  tagIds)'
230
  print ''
231
  print ''
231
  sys.exit(0)
232
  sys.exit(0)
Line 1493... Line 1494...
1493
  if len(args) != 1:
1494
  if len(args) != 1:
1494
    print 'getIgstTaxRate requires 1 args'
1495
    print 'getIgstTaxRate requires 1 args'
1495
    sys.exit(1)
1496
    sys.exit(1)
1496
  pp.pprint(client.getIgstTaxRate(eval(args[0]),))
1497
  pp.pprint(client.getIgstTaxRate(eval(args[0]),))
1497
 
1498
 
-
 
1499
elif cmd == 'persistStateGstRate':
-
 
1500
  if len(args) != 1:
-
 
1501
    print 'persistStateGstRate requires 1 args'
-
 
1502
    sys.exit(1)
-
 
1503
  pp.pprint(client.persistStateGstRate(eval(args[0]),))
-
 
1504
 
1498
elif cmd == 'getInterStateGstRates':
1505
elif cmd == 'getInterStateGstRates':
1499
  if len(args) != 0:
1506
  if len(args) != 0:
1500
    print 'getInterStateGstRates requires 0 args'
1507
    print 'getInterStateGstRates requires 0 args'
1501
    sys.exit(1)
1508
    sys.exit(1)
1502
  pp.pprint(client.getInterStateGstRates())
1509
  pp.pprint(client.getInterStateGstRates())