| Line 87... |
Line 87... |
| 87 |
LOST_IN_TRANSIT,
|
87 |
LOST_IN_TRANSIT,
|
| 88 |
LOST_IN_TRANSIT_RESHIPPED,
|
88 |
LOST_IN_TRANSIT_RESHIPPED,
|
| 89 |
LOST_IN_TRANSIT_REFUNDED
|
89 |
LOST_IN_TRANSIT_REFUNDED
|
| 90 |
}
|
90 |
}
|
| 91 |
|
91 |
|
| 92 |
|
- |
|
| 93 |
enum TransactionStatus{
|
92 |
enum TransactionStatus{
|
| 94 |
INIT,
|
93 |
INIT,
|
| 95 |
IN_PROCESS,
|
94 |
IN_PROCESS,
|
| 96 |
COMPLETED,
|
95 |
COMPLETED,
|
| 97 |
FAILED,
|
96 |
FAILED,
|
| Line 903... |
Line 902... |
| 903 |
|
902 |
|
| 904 |
void savePaymentSettlements(1:i64 settlementDate, 2:i64 paymentGatewayId, 3:i64 referenceId, 4:double serviceTax, 5:double otherCharges, 6:double netCollection) throws (1:TransactionServiceException ex),
|
903 |
void savePaymentSettlements(1:i64 settlementDate, 2:i64 paymentGatewayId, 3:i64 referenceId, 4:double serviceTax, 5:double otherCharges, 6:double netCollection) throws (1:TransactionServiceException ex),
|
| 905 |
|
904 |
|
| 906 |
void saveEBSSettlementSummary(1:i64 settlementId, 2:i64 settlementDate, 3:i64 transactionDateFrom, 4:i64 transactionDateTo, 5:double amount) throws (1:TransactionServiceException ex),
|
905 |
void saveEBSSettlementSummary(1:i64 settlementId, 2:i64 settlementDate, 3:i64 transactionDateFrom, 4:i64 transactionDateTo, 5:double amount) throws (1:TransactionServiceException ex),
|
| 907 |
|
906 |
|
| 908 |
PaymentSettlement getSettlementForReferenceId(1:i64 referenceId, 2:bool isRefund) throws (1:TransactionServiceException ex),
|
907 |
PaymentSettlement getSettlementForReferenceId(1:i64 referenceId, 2:i64 paymentGatewayId, 3:bool isRefund) throws (1:TransactionServiceException ex),
|
| 909 |
|
908 |
|
| 910 |
map<i64, string> getEBSSettlementSummaries() throws (1:TransactionServiceException ex),
|
909 |
map<i64, string> getEBSSettlementSummaries() throws (1:TransactionServiceException ex),
|
| 911 |
|
910 |
|
| 912 |
void markEBSSettlementUploaded(1:i64 settlementId) throws (1:TransactionServiceException ex),
|
911 |
void markEBSSettlementUploaded(1:i64 settlementId) throws (1:TransactionServiceException ex),
|
| 913 |
|
912 |
|