| 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)'
|
287 |
print ' PaginatedCreditHistory getLimitedCreditHistoryRecords(i64 paymentId, i64 userId, i64 creditorId, i64 limit, i64 offset)'
|
| 288 |
print ' getLimitedLoanHistoryRecords(i64 paymentId, i64 userId, i64 creditorId, i64 limit, i64 offset)'
|
288 |
print ' PaginatedLoanHistory getLimitedLoanHistoryRecords(i64 paymentId, i64 userId, i64 creditorId, i64 limit, i64 offset)'
|
| - |
|
289 |
print ' PaginatedUserSanction getUserSanctionsDetailsAsPerLimit(i64 userId, i64 creditorId, i64 limit, i64 offset)'
|
| 289 |
print ' ReturnOrderInfo getReturnOrderInfo(i64 id)'
|
290 |
print ' ReturnOrderInfo getReturnOrderInfo(i64 id)'
|
| 290 |
print ' getReturnOrderInfoList( order_ids)'
|
291 |
print ' getReturnOrderInfoList( order_ids)'
|
| 291 |
print ' getReturnOrderInfoListAsByStatus( order_ids, statuses)'
|
292 |
print ' getReturnOrderInfoListAsByStatus( order_ids, statuses)'
|
| 292 |
print ' bool updateReturnOrderInfo(ReturnOrderInfo returnInfo)'
|
293 |
print ' bool updateReturnOrderInfo(ReturnOrderInfo returnInfo)'
|
| 293 |
print ' bulkUpdateReturnOrderInfo( orderReturnInfosMap)'
|
294 |
print ' bulkUpdateReturnOrderInfo( orderReturnInfosMap)'
|
| Line 1944... |
Line 1945... |
| 1944 |
if len(args) != 5:
|
1945 |
if len(args) != 5:
|
| 1945 |
print 'getLimitedLoanHistoryRecords requires 5 args'
|
1946 |
print 'getLimitedLoanHistoryRecords requires 5 args'
|
| 1946 |
sys.exit(1)
|
1947 |
sys.exit(1)
|
| 1947 |
pp.pprint(client.getLimitedLoanHistoryRecords(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),eval(args[4]),))
|
1948 |
pp.pprint(client.getLimitedLoanHistoryRecords(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),eval(args[4]),))
|
| 1948 |
|
1949 |
|
| - |
|
1950 |
elif cmd == 'getUserSanctionsDetailsAsPerLimit':
|
| - |
|
1951 |
if len(args) != 4:
|
| - |
|
1952 |
print 'getUserSanctionsDetailsAsPerLimit requires 4 args'
|
| - |
|
1953 |
sys.exit(1)
|
| - |
|
1954 |
pp.pprint(client.getUserSanctionsDetailsAsPerLimit(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),))
|
| - |
|
1955 |
|
| 1949 |
elif cmd == 'getReturnOrderInfo':
|
1956 |
elif cmd == 'getReturnOrderInfo':
|
| 1950 |
if len(args) != 1:
|
1957 |
if len(args) != 1:
|
| 1951 |
print 'getReturnOrderInfo requires 1 args'
|
1958 |
print 'getReturnOrderInfo requires 1 args'
|
| 1952 |
sys.exit(1)
|
1959 |
sys.exit(1)
|
| 1953 |
pp.pprint(client.getReturnOrderInfo(eval(args[0]),))
|
1960 |
pp.pprint(client.getReturnOrderInfo(eval(args[0]),))
|