Subversion Repositories SmartDukaan

Rev

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

Rev 18674 Rev 18769
Line 949... Line 949...
949
	12:i64 credit_due_days 
949
	12:i64 credit_due_days 
950
}
950
}
951
 
951
 
952
enum CreditTxnType{
952
enum CreditTxnType{
953
	BLOCKED,
953
	BLOCKED,
954
	BLOCK_REVERSED,
954
	BLOCKED_REVERSED,
955
	LOAN,
955
	LOAN,
956
	LOAN_CANCELLED,
956
	LOAN_CANCELLED,
957
	PAID,
957
	PAID,
958
	DEFAULTED,
958
	DEFAULTED,
959
	CORRECTION
959
	CORRECTION
Line 979... Line 979...
979
	6:CreditTxnType credit_type, 
979
	6:CreditTxnType credit_type, 
980
	7:i64 created, 
980
	7:i64 created, 
981
	8:i64 updated,
981
	8:i64 updated,
982
	9:string loan_id, 
982
	9:string loan_id, 
983
	10:i64 due_date,
983
	10:i64 due_date,
984
	11:i64 value_date
984
	11:i64 value_date,
-
 
985
	12:string invoiceNumber
985
}
986
}
986
 
987
 
987
enum ReturnAction{
988
enum ReturnAction{
988
	REPLACEMENT,
989
	REPLACEMENT,
989
	REFUND
990
	REFUND
Line 1965... Line 1966...
1965
    
1966
    
1966
    list<LoanHistory> getLoanHistoryRecordsForUserAndCreditor(1:i64 userId, 2:i64 creditorId, 3:CreditTxnType creditTxnType)
1967
    list<LoanHistory> getLoanHistoryRecordsForUserAndCreditor(1:i64 userId, 2:i64 creditorId, 3:CreditTxnType creditTxnType)
1967
    
1968
    
1968
    bool processLoanTransaction(1:i64 paymentId, 2:i64 userId, 3:i64 creditorId, 4:list<LoanHistory> creditTxns) throws (1:TransactionServiceException pe)
1969
    bool processLoanTransaction(1:i64 paymentId, 2:i64 userId, 3:i64 creditorId, 4:list<LoanHistory> creditTxns) throws (1:TransactionServiceException pe)
1969
    
1970
    
-
 
1971
    list<CreditHistory> getLimitedCreditHistoryRecords(1:i64 paymentId, 2:i64 userId, 3:i64 creditorId, 4:i64 limit, 5:i64 offset)
-
 
1972
    
-
 
1973
    list<LoanHistory> getLimitedLoanHistoryRecords(1:i64 paymentId, 2:i64 userId, 3:i64 creditorId, 4:i64 limit, 5:i64 offset)
-
 
1974
    
1970
    ReturnOrderInfo getReturnOrderInfo(1:i64 id) throws (1:TransactionServiceException ex);
1975
    ReturnOrderInfo getReturnOrderInfo(1:i64 id) throws (1:TransactionServiceException ex);
1971
     
1976
     
1972
     map<i64,list<ReturnOrderInfo>> getReturnOrderInfoList(1:list<i64> order_ids);
1977
     map<i64,list<ReturnOrderInfo>> getReturnOrderInfoList(1:list<i64> order_ids);
1973
	
1978
	
1974
	 map<i64,list<ReturnOrderInfo>> getReturnOrderInfoListAsByStatus(1:list<i64> order_ids, 2:list<string> statuses);
1979
	 map<i64,list<ReturnOrderInfo>> getReturnOrderInfoListAsByStatus(1:list<i64> order_ids, 2:list<string> statuses);