Subversion Repositories SmartDukaan

Rev

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

Rev 19869 Rev 19888
Line 1024... Line 1024...
1024
	1:bool hasMore,
1024
	1:bool hasMore,
1025
	2:i64 totalCount,
1025
	2:i64 totalCount,
1026
	3:list<LoanHistory> loanHistoryList
1026
	3:list<LoanHistory> loanHistoryList
1027
}
1027
}
1028
 
1028
 
-
 
1029
 
-
 
1030
struct OutstandingPayments{
-
 
1031
	1:i64 user_id,
-
 
1032
	2:string counter_name
-
 
1033
	3:i64 creditor_id,
-
 
1034
	4:i64 payment_id,
-
 
1035
	5:double totalAmount,
-
 
1036
	6:i64 created
-
 
1037
}
-
 
1038
 
1029
enum ReturnAction{
1039
enum ReturnAction{
1030
	REPLACEMENT,
1040
	REPLACEMENT,
1031
	REFUND
1041
	REFUND
1032
}
1042
}
1033
 
1043
 
Line 2026... Line 2036...
2026
    
2036
    
2027
    PaginatedLoanHistory getLimitedLoanHistoryRecords(1:i64 paymentId, 2:i64 userId, 3:i64 creditorId, 4:i64 limit, 5:i64 offset)
2037
    PaginatedLoanHistory getLimitedLoanHistoryRecords(1:i64 paymentId, 2:i64 userId, 3:i64 creditorId, 4:i64 limit, 5:i64 offset)
2028
    
2038
    
2029
    PaginatedUserSanction getUserSanctionsDetailsAsPerLimit(1:i64 userId, 2:i64 creditorId, 3:i64 limit, 4:i64 offset,5:string sort)
2039
    PaginatedUserSanction getUserSanctionsDetailsAsPerLimit(1:i64 userId, 2:i64 creditorId, 3:i64 limit, 4:i64 offset,5:string sort)
2030
    
2040
    
-
 
2041
    list<OutstandingPayments> getOutstandingPayments(1:string fetchType, 2:i64 userId, 3:i64 limit)
-
 
2042
    
2031
    ReturnOrderInfo getReturnOrderInfo(1:i64 id) throws (1:TransactionServiceException ex);
2043
    ReturnOrderInfo getReturnOrderInfo(1:i64 id) throws (1:TransactionServiceException ex);
2032
     
2044
     
2033
     map<i64,list<ReturnOrderInfo>> getReturnOrderInfoList(1:list<i64> order_ids);
2045
     map<i64,list<ReturnOrderInfo>> getReturnOrderInfoList(1:list<i64> order_ids);
2034
	
2046
	
2035
	 map<i64,list<ReturnOrderInfo>> getReturnOrderInfoListAsByStatus(1:list<i64> order_ids, 2:list<string> statuses);
2047
	 map<i64,list<ReturnOrderInfo>> getReturnOrderInfoListAsByStatus(1:list<i64> order_ids, 2:list<string> statuses);