| Line 917... |
Line 917... |
| 917 |
|
917 |
|
| 918 |
/**
|
918 |
/**
|
| 919 |
Returns list of Order Ids, which belong to reshiped orders, shortlisted from a given list of Order Ids
|
919 |
Returns list of Order Ids, which belong to reshiped orders, shortlisted from a given list of Order Ids
|
| 920 |
*/
|
920 |
*/
|
| 921 |
list<i64> getReshippedOrderIds(1:list<i64> orderIds) throws (1:TransactionServiceException ex),
|
921 |
list<i64> getReshippedOrderIds(1:list<i64> orderIds) throws (1:TransactionServiceException ex),
|
| 922 |
|
- |
|
| 923 |
/**
|
- |
|
| 924 |
* Updates orders as PO raised. Also updates purchase order id in orders. Pass a map of items mapped to
|
- |
|
| 925 |
* the quantities for which the PO is raised.
|
- |
|
| 926 |
*/
|
- |
|
| 927 |
void updateOrdersAsPORaised(1:map<i64, i64> itemIdQuantityMap, 2:i64 purchaseOrderId, 3:i64 warehouseId) throws (1:TransactionServiceException ex),
|
- |
|
| 928 |
|
922 |
|
| 929 |
list<Order> getOrdersWhereVendorNotPaid(1:i64 vendorId) throws (1:TransactionServiceException ex),
|
923 |
list<Order> getOrdersWhereVendorNotPaid(1:i64 vendorId) throws (1:TransactionServiceException ex),
|
| 930 |
|
924 |
|
| 931 |
map<i64, i64> getStatusDistributionOfOrders(1:i64 startDate, 2:i64 endDate) throws (1:TransactionServiceException ex),
|
925 |
map<i64, i64> getStatusDistributionOfOrders(1:i64 startDate, 2:i64 endDate) throws (1:TransactionServiceException ex),
|
| 932 |
|
926 |
|