| Line 275... |
Line 275... |
| 275 |
print ' Creditor getCreditorInfo(i64 id, string name)'
|
275 |
print ' Creditor getCreditorInfo(i64 id, string name)'
|
| 276 |
print ' bool updateCreditorInfo(Creditor creditor)'
|
276 |
print ' bool updateCreditorInfo(Creditor creditor)'
|
| 277 |
print ' getUserSanctionDetails(i64 userId)'
|
277 |
print ' getUserSanctionDetails(i64 userId)'
|
| 278 |
print ' UserSanction getUserSanctionDetailsForCreditor(i64 userId, i64 creditorId)'
|
278 |
print ' UserSanction getUserSanctionDetailsForCreditor(i64 userId, i64 creditorId)'
|
| 279 |
print ' bool updateUserSanction(UserSanction userSanaction)'
|
279 |
print ' bool updateUserSanction(UserSanction userSanaction)'
|
| 280 |
print ' getCreditHistoryRecordsForTransaction(i64 paymentId, i64 creditorId, string creditTxnType)'
|
280 |
print ' getCreditHistoryRecordsForTransaction(i64 paymentId, CreditTxnType creditTxnType)'
|
| 281 |
print ' getCreditHistoryRecordsForUserAndCreditor(i64 userId, string creditTxnType)'
|
281 |
print ' getCreditHistoryRecordsForUserAndCreditor(i64 userId, i64 creditorId, CreditTxnType creditTxnType)'
|
| 282 |
print ' bool processCreditTransaction(i64 paymentId, creditTxns)'
|
282 |
print ' bool processCreditTransaction(i64 paymentId, i64 userId, i64 creditorId, creditTxns)'
|
| 283 |
print ' getLoanPayableForUserToCreditor(i64 userId, i64 creditorId, i64 dueDate)'
|
283 |
print ' double getLoanPayableForUserToCreditor(i64 userId, i64 creditorId, i64 dueDate)'
|
| - |
|
284 |
print ' getLoanHistoryRecordsForTransaction(i64 paymentId, CreditTxnType creditTxnType)'
|
| - |
|
285 |
print ' getLoanHistoryRecordsForUserAndCreditor(i64 userId, i64 creditorId, CreditTxnType creditTxnType)'
|
| - |
|
286 |
print ' bool processLoanTransaction(i64 paymentId, i64 userId, i64 creditorId, creditTxns)'
|
| 284 |
print ' ReturnOrderInfo getReturnOrderInfo(i64 id)'
|
287 |
print ' ReturnOrderInfo getReturnOrderInfo(i64 id)'
|
| 285 |
print ' getReturnOrderInfoList( order_ids)'
|
288 |
print ' getReturnOrderInfoList( order_ids)'
|
| 286 |
print ' getReturnOrderInfoListAsByStatus( order_ids, statuses)'
|
289 |
print ' getReturnOrderInfoListAsByStatus( order_ids, statuses)'
|
| 287 |
print ' bool updateReturnOrderInfo(ReturnOrderInfo returnInfo)'
|
290 |
print ' bool updateReturnOrderInfo(ReturnOrderInfo returnInfo)'
|
| 288 |
print ' bulkUpdateReturnOrderInfo( orderReturnInfosMap)'
|
291 |
print ' bulkUpdateReturnOrderInfo( orderReturnInfosMap)'
|
| Line 1886... |
Line 1889... |
| 1886 |
print 'updateUserSanction requires 1 args'
|
1889 |
print 'updateUserSanction requires 1 args'
|
| 1887 |
sys.exit(1)
|
1890 |
sys.exit(1)
|
| 1888 |
pp.pprint(client.updateUserSanction(eval(args[0]),))
|
1891 |
pp.pprint(client.updateUserSanction(eval(args[0]),))
|
| 1889 |
|
1892 |
|
| 1890 |
elif cmd == 'getCreditHistoryRecordsForTransaction':
|
1893 |
elif cmd == 'getCreditHistoryRecordsForTransaction':
|
| 1891 |
if len(args) != 3:
|
1894 |
if len(args) != 2:
|
| 1892 |
print 'getCreditHistoryRecordsForTransaction requires 3 args'
|
1895 |
print 'getCreditHistoryRecordsForTransaction requires 2 args'
|
| 1893 |
sys.exit(1)
|
1896 |
sys.exit(1)
|
| 1894 |
pp.pprint(client.getCreditHistoryRecordsForTransaction(eval(args[0]),eval(args[1]),args[2],))
|
1897 |
pp.pprint(client.getCreditHistoryRecordsForTransaction(eval(args[0]),eval(args[1]),))
|
| 1895 |
|
1898 |
|
| 1896 |
elif cmd == 'getCreditHistoryRecordsForUserAndCreditor':
|
1899 |
elif cmd == 'getCreditHistoryRecordsForUserAndCreditor':
|
| 1897 |
if len(args) != 2:
|
1900 |
if len(args) != 3:
|
| 1898 |
print 'getCreditHistoryRecordsForUserAndCreditor requires 2 args'
|
1901 |
print 'getCreditHistoryRecordsForUserAndCreditor requires 3 args'
|
| 1899 |
sys.exit(1)
|
1902 |
sys.exit(1)
|
| 1900 |
pp.pprint(client.getCreditHistoryRecordsForUserAndCreditor(eval(args[0]),args[1],))
|
1903 |
pp.pprint(client.getCreditHistoryRecordsForUserAndCreditor(eval(args[0]),eval(args[1]),eval(args[2]),))
|
| 1901 |
|
1904 |
|
| 1902 |
elif cmd == 'processCreditTransaction':
|
1905 |
elif cmd == 'processCreditTransaction':
|
| 1903 |
if len(args) != 2:
|
1906 |
if len(args) != 4:
|
| 1904 |
print 'processCreditTransaction requires 2 args'
|
1907 |
print 'processCreditTransaction requires 4 args'
|
| 1905 |
sys.exit(1)
|
1908 |
sys.exit(1)
|
| 1906 |
pp.pprint(client.processCreditTransaction(eval(args[0]),eval(args[1]),))
|
1909 |
pp.pprint(client.processCreditTransaction(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),))
|
| 1907 |
|
1910 |
|
| 1908 |
elif cmd == 'getLoanPayableForUserToCreditor':
|
1911 |
elif cmd == 'getLoanPayableForUserToCreditor':
|
| 1909 |
if len(args) != 3:
|
1912 |
if len(args) != 3:
|
| 1910 |
print 'getLoanPayableForUserToCreditor requires 3 args'
|
1913 |
print 'getLoanPayableForUserToCreditor requires 3 args'
|
| 1911 |
sys.exit(1)
|
1914 |
sys.exit(1)
|
| 1912 |
pp.pprint(client.getLoanPayableForUserToCreditor(eval(args[0]),eval(args[1]),eval(args[2]),))
|
1915 |
pp.pprint(client.getLoanPayableForUserToCreditor(eval(args[0]),eval(args[1]),eval(args[2]),))
|
| 1913 |
|
1916 |
|
| - |
|
1917 |
elif cmd == 'getLoanHistoryRecordsForTransaction':
|
| - |
|
1918 |
if len(args) != 2:
|
| - |
|
1919 |
print 'getLoanHistoryRecordsForTransaction requires 2 args'
|
| - |
|
1920 |
sys.exit(1)
|
| - |
|
1921 |
pp.pprint(client.getLoanHistoryRecordsForTransaction(eval(args[0]),eval(args[1]),))
|
| - |
|
1922 |
|
| - |
|
1923 |
elif cmd == 'getLoanHistoryRecordsForUserAndCreditor':
|
| - |
|
1924 |
if len(args) != 3:
|
| - |
|
1925 |
print 'getLoanHistoryRecordsForUserAndCreditor requires 3 args'
|
| - |
|
1926 |
sys.exit(1)
|
| - |
|
1927 |
pp.pprint(client.getLoanHistoryRecordsForUserAndCreditor(eval(args[0]),eval(args[1]),eval(args[2]),))
|
| - |
|
1928 |
|
| - |
|
1929 |
elif cmd == 'processLoanTransaction':
|
| - |
|
1930 |
if len(args) != 4:
|
| - |
|
1931 |
print 'processLoanTransaction requires 4 args'
|
| - |
|
1932 |
sys.exit(1)
|
| - |
|
1933 |
pp.pprint(client.processLoanTransaction(eval(args[0]),eval(args[1]),eval(args[2]),eval(args[3]),))
|
| - |
|
1934 |
|
| 1914 |
elif cmd == 'getReturnOrderInfo':
|
1935 |
elif cmd == 'getReturnOrderInfo':
|
| 1915 |
if len(args) != 1:
|
1936 |
if len(args) != 1:
|
| 1916 |
print 'getReturnOrderInfo requires 1 args'
|
1937 |
print 'getReturnOrderInfo requires 1 args'
|
| 1917 |
sys.exit(1)
|
1938 |
sys.exit(1)
|
| 1918 |
pp.pprint(client.getReturnOrderInfo(eval(args[0]),))
|
1939 |
pp.pprint(client.getReturnOrderInfo(eval(args[0]),))
|