| Line 197... |
Line 197... |
| 197 |
Returns orders within a range of their billing dates
|
197 |
Returns orders within a range of their billing dates
|
| 198 |
*/
|
198 |
*/
|
| 199 |
list<Order> getOrdersByBillingDate(1:OrderStatus status, 2:i64 start_billing_date, 3:i64 end_billing_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
199 |
list<Order> getOrdersByBillingDate(1:OrderStatus status, 2:i64 start_billing_date, 3:i64 end_billing_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
| 200 |
|
200 |
|
| 201 |
/**
|
201 |
/**
|
| - |
|
202 |
Returns orders for a particular provider and warehouse which were shipped between the given dates.
|
| - |
|
203 |
Pass providerId and warehouseId as -1 to ignore both the parameters.
|
| - |
|
204 |
*/
|
| - |
|
205 |
list<Order> getOrdersByShippingDate(1:i64 fromShippingDate, 2:i64 toShippingDate, 3:i64 providerId, 4:i64 warehouseId) throws (1:TransactionServiceException ex),
|
| - |
|
206 |
|
| - |
|
207 |
/**
|
| 202 |
Returns order ids for orders which can be returned
|
208 |
Returns order ids for orders which can be returned
|
| 203 |
*/
|
209 |
*/
|
| 204 |
list<i64> getReturnableOrdersForCustomer(1:i64 customer_id, 2:i64 limit) throws (1:TransactionServiceException ex),
|
210 |
list<i64> getReturnableOrdersForCustomer(1:i64 customer_id, 2:i64 limit) throws (1:TransactionServiceException ex),
|
| 205 |
|
211 |
|
| 206 |
/**
|
212 |
/**
|