Subversion Repositories SmartDukaan

Rev

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

Rev 7343 Rev 7363
Line 185... Line 185...
185
  print '  Order splitFreebieOrder(i64 orderId, string splitReason, i64 shippingDate)'
185
  print '  Order splitFreebieOrder(i64 orderId, string splitReason, i64 shippingDate)'
186
  print '   getRechargeTransactionsByNumber(string number, i64 storeId)'
186
  print '   getRechargeTransactionsByNumber(string number, i64 storeId)'
187
  print '  bool updateHotspotStorePassword(i64 storeId, string password)'
187
  print '  bool updateHotspotStorePassword(i64 storeId, string password)'
188
  print '  i64 topupCompanyWallet(i64 companyId, i64 amount)'
188
  print '  i64 topupCompanyWallet(i64 companyId, i64 amount)'
189
  print '  i64 getWalletBalanceForCompany(i64 companyId)'
189
  print '  i64 getWalletBalanceForCompany(i64 companyId)'
-
 
190
  print '  i64 getSaholicRechargeBalance()'
190
  print '  SourceDetail getSourceDetail(i64 source)'
191
  print '  SourceDetail getSourceDetail(i64 source)'
191
  print '   getAllCircles()'
192
  print '   getAllCircles()'
192
  print '  bool deleteFrcs( frcIdsToDelete)'
193
  print '  bool deleteFrcs( frcIdsToDelete)'
193
  print '  void addAmazonOrder(AmazonOrder amazonOrder)'
194
  print '  void addAmazonOrder(AmazonOrder amazonOrder)'
194
  print '  bool updateAmazonOrderStatus(i64 orderId, string status)'
195
  print '  bool updateAmazonOrderStatus(i64 orderId, string status)'
Line 1241... Line 1242...
1241
  if len(args) != 1:
1242
  if len(args) != 1:
1242
    print 'getWalletBalanceForCompany requires 1 args'
1243
    print 'getWalletBalanceForCompany requires 1 args'
1243
    sys.exit(1)
1244
    sys.exit(1)
1244
  pp.pprint(client.getWalletBalanceForCompany(eval(args[0]),))
1245
  pp.pprint(client.getWalletBalanceForCompany(eval(args[0]),))
1245
 
1246
 
-
 
1247
elif cmd == 'getSaholicRechargeBalance':
-
 
1248
  if len(args) != 0:
-
 
1249
    print 'getSaholicRechargeBalance requires 0 args'
-
 
1250
    sys.exit(1)
-
 
1251
  pp.pprint(client.getSaholicRechargeBalance())
-
 
1252
 
1246
elif cmd == 'getSourceDetail':
1253
elif cmd == 'getSourceDetail':
1247
  if len(args) != 1:
1254
  if len(args) != 1:
1248
    print 'getSourceDetail requires 1 args'
1255
    print 'getSourceDetail requires 1 args'
1249
    sys.exit(1)
1256
    sys.exit(1)
1250
  pp.pprint(client.getSourceDetail(eval(args[0]),))
1257
  pp.pprint(client.getSourceDetail(eval(args[0]),))