| Line 2029... |
Line 2029... |
| 2029 |
bool refundReturnTransactionPayment(1:map<i64, map<string, string>> refundOrdersMap, 2:i64 returntransactionId) throws (1:TransactionServiceException ex);
|
2029 |
bool refundReturnTransactionPayment(1:map<i64, map<string, string>> refundOrdersMap, 2:i64 returntransactionId) throws (1:TransactionServiceException ex);
|
| 2030 |
|
2030 |
|
| 2031 |
list<ReturnTransaction> getReturnTransactionsForCustomer(1:list<ReturnTransactionStatus> statusList, 2:string customerMobile, 3:string customerEmail, 4:i64 returnTransactionId, 5:i64 customerId) throws (1:TransactionServiceException ex);
|
2031 |
list<ReturnTransaction> getReturnTransactionsForCustomer(1:list<ReturnTransactionStatus> statusList, 2:string customerMobile, 3:string customerEmail, 4:i64 returnTransactionId, 5:i64 customerId) throws (1:TransactionServiceException ex);
|
| 2032 |
|
2032 |
|
| 2033 |
bool verifyOrderForTransaction(1:i64 transactionId) throws (1:TransactionServiceException ex);
|
2033 |
bool verifyOrderForTransaction(1:i64 transactionId) throws (1:TransactionServiceException ex);
|
| 2034 |
|
2034 |
|
| - |
|
2035 |
/**
|
| - |
|
2036 |
Returns at most 'limit' orders with the given statuses for the given warehouse starting from the given offset.
|
| - |
|
2037 |
These orders should be in order of promised shipping time.
|
| - |
|
2038 |
Pass the status as null and the limit as 0 to ignore them.
|
| - |
|
2039 |
*/
|
| - |
|
2040 |
list<Order> getOrdersInBatchAsPromisedShipping(1:list<OrderStatus> statuses, 2:i64 offset, 3:i64 limit, 4:i64 warehouse_id, 5:i64 source) throws (1:TransactionServiceException ex),
|
| - |
|
2041 |
|
| 2035 |
}
|
2042 |
}
|
| 2036 |
|
2043 |
|