| Line 282... |
Line 282... |
| 282 |
print ' bool processCreditTransaction(i64 paymentId, i64 userId, i64 creditorId, creditTxns)'
|
282 |
print ' bool processCreditTransaction(i64 paymentId, i64 userId, i64 creditorId, creditTxns)'
|
| 283 |
print ' double getLoanPayableForUserToCreditor(i64 userId, i64 creditorId, i64 dueDate)'
|
283 |
print ' double getLoanPayableForUserToCreditor(i64 userId, i64 creditorId, i64 dueDate)'
|
| 284 |
print ' getLoanHistoryRecordsForTransaction(i64 paymentId, CreditTxnType creditTxnType)'
|
284 |
print ' getLoanHistoryRecordsForTransaction(i64 paymentId, CreditTxnType creditTxnType)'
|
| 285 |
print ' getLoanHistoryRecordsForUserAndCreditor(i64 userId, i64 creditorId, CreditTxnType creditTxnType)'
|
285 |
print ' getLoanHistoryRecordsForUserAndCreditor(i64 userId, i64 creditorId, CreditTxnType creditTxnType)'
|
| 286 |
print ' bool processLoanTransaction(i64 paymentId, i64 userId, i64 creditorId, creditTxns)'
|
286 |
print ' bool processLoanTransaction(i64 paymentId, i64 userId, i64 creditorId, creditTxns)'
|
| - |
|
287 |
print ' getLimitedCreditHistoryRecords(i64 paymentId, i64 userId, i64 creditorId, i64 limit, i64 offset)'
|
| - |
|
288 |
print ' getLimitedLoanHistoryRecords(i64 paymentId, i64 userId, i64 creditorId, i64 limit, i64 offset)'
|
| 287 |
print ' ReturnOrderInfo getReturnOrderInfo(i64 id)'
|
289 |
print ' ReturnOrderInfo getReturnOrderInfo(i64 id)'
|
| 288 |
print ' getReturnOrderInfoList( order_ids)'
|
290 |
print ' getReturnOrderInfoList( order_ids)'
|
| 289 |
print ' getReturnOrderInfoListAsByStatus( order_ids, statuses)'
|
291 |
print ' getReturnOrderInfoListAsByStatus( order_ids, statuses)'
|
| 290 |
print ' bool updateReturnOrderInfo(ReturnOrderInfo returnInfo)'
|
292 |
print ' bool updateReturnOrderInfo(ReturnOrderInfo returnInfo)'
|
| 291 |
print ' bulkUpdateReturnOrderInfo( orderReturnInfosMap)'
|
293 |
print ' bulkUpdateReturnOrderInfo( orderReturnInfosMap)'
|
| Line 1930... |
Line 1932... |
| 1930 |
if len(args) != 4:
|
1932 |
if len(args) != 4:
|
| 1931 |
print 'processLoanTransaction requires 4 args'
|
1933 |
print 'processLoanTransaction requires 4 args'
|
| 1932 |
sys.exit(1)
|
1934 |
sys.exit(1)
|
| 1933 |
pp.pprint(client.processLoanTransaction(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),))
|
1935 |
pp.pprint(client.processLoanTransaction(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),))
|
| 1934 |
|
1936 |
|
| - |
|
1937 |
elif cmd == 'getLimitedCreditHistoryRecords':
|
| - |
|
1938 |
if len(args) != 5:
|
| - |
|
1939 |
print 'getLimitedCreditHistoryRecords requires 5 args'
|
| - |
|
1940 |
sys.exit(1)
|
| - |
|
1941 |
pp.pprint(client.getLimitedCreditHistoryRecords(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),eval(args[4]),))
|
| - |
|
1942 |
|
| - |
|
1943 |
elif cmd == 'getLimitedLoanHistoryRecords':
|
| - |
|
1944 |
if len(args) != 5:
|
| - |
|
1945 |
print 'getLimitedLoanHistoryRecords requires 5 args'
|
| - |
|
1946 |
sys.exit(1)
|
| - |
|
1947 |
pp.pprint(client.getLimitedLoanHistoryRecords(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),eval(args[4]),))
|
| - |
|
1948 |
|
| 1935 |
elif cmd == 'getReturnOrderInfo':
|
1949 |
elif cmd == 'getReturnOrderInfo':
|
| 1936 |
if len(args) != 1:
|
1950 |
if len(args) != 1:
|
| 1937 |
print 'getReturnOrderInfo requires 1 args'
|
1951 |
print 'getReturnOrderInfo requires 1 args'
|
| 1938 |
sys.exit(1)
|
1952 |
sys.exit(1)
|
| 1939 |
pp.pprint(client.getReturnOrderInfo(eval(args[0]),))
|
1953 |
pp.pprint(client.getReturnOrderInfo(eval(args[0]),))
|