| Line 272... |
Line 272... |
| 272 |
14:i64 createdAt,
|
272 |
14:i64 createdAt,
|
| 273 |
15:i64 processedAt
|
273 |
15:i64 processedAt
|
| 274 |
}
|
274 |
}
|
| 275 |
|
275 |
|
| 276 |
struct PaymentSettlement {
|
276 |
struct PaymentSettlement {
|
| 277 |
1:string gatewayTxnId,
|
- |
|
| 278 |
2:i64 paymentGatewayId,
|
277 |
2:i64 paymentGatewayId,
|
| 279 |
3:i64 paymentId,
|
278 |
3:i64 referenceId,
|
| 280 |
4:i64 settlementDate,
|
279 |
4:i64 settlementDate,
|
| 281 |
5:double serviceTax,
|
280 |
5:double serviceTax,
|
| 282 |
6:double otherCharges,
|
281 |
6:double otherCharges,
|
| 283 |
7:double netCollection
|
282 |
7:double netCollection
|
| 284 |
}
|
283 |
}
|
| Line 824... |
Line 823... |
| 824 |
|
823 |
|
| 825 |
list<Order> getCancelledOrders(1:i64 cancelDateFrom, 2:i64 cancelDateTo) throws (1:TransactionServiceException ex),
|
824 |
list<Order> getCancelledOrders(1:i64 cancelDateFrom, 2:i64 cancelDateTo) throws (1:TransactionServiceException ex),
|
| 826 |
|
825 |
|
| 827 |
void saveBluedartSettlements(1:map<i64, double> mapAWBAndAmount) throws (1:TransactionServiceException ex),
|
826 |
void saveBluedartSettlements(1:map<i64, double> mapAWBAndAmount) throws (1:TransactionServiceException ex),
|
| 828 |
|
827 |
|
| 829 |
void savePaymentSettlements(1:i64 settlementDate, 2:i64 paymentGatewayId, 3:i64 paymentId, 4:double serviceTax, 5:double otherCharges, 6:double netCollection) throws (1:TransactionServiceException ex),
|
828 |
void savePaymentSettlements(1:i64 settlementDate, 2:i64 paymentGatewayId, 3:i64 referenceId, 4:double serviceTax, 5:double otherCharges, 6:double netCollection) throws (1:TransactionServiceException ex),
|
| 830 |
|
- |
|
| 831 |
void saveCODPaymentSettlement(1:i64 orderId, 2:i64 settlementDate, 3:double collection) throws (1:TransactionServiceException ex),
|
- |
|
| 832 |
|
829 |
|
| 833 |
void saveEBSSettlementSummary(1:i64 settlementId, 2:i64 settlementDate, 3:i64 transactionDateFrom, 4:i64 transactionDateTo, 5:double amount) throws (1:TransactionServiceException ex),
|
830 |
void saveEBSSettlementSummary(1:i64 settlementId, 2:i64 settlementDate, 3:i64 transactionDateFrom, 4:i64 transactionDateTo, 5:double amount) throws (1:TransactionServiceException ex),
|
| 834 |
|
831 |
|
| 835 |
PaymentSettlement getSettlementForPaymentId(1:i64 paymentId) throws (1:TransactionServiceException ex),
|
832 |
PaymentSettlement getSettlementForPaymentId(1:i64 paymentId) throws (1:TransactionServiceException ex),
|
| 836 |
|
833 |
|