| Line 219... |
Line 219... |
| 219 |
bool enqueueTransactionInfoEmail(1:i64 transactionId) throws (1:TransactionServiceException ex),
|
219 |
bool enqueueTransactionInfoEmail(1:i64 transactionId) throws (1:TransactionServiceException ex),
|
| 220 |
|
220 |
|
| 221 |
list<Order> getAllOrders(1:OrderStatus status, 2:i64 from_date, 3:i64 to_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
221 |
list<Order> getAllOrders(1:OrderStatus status, 2:i64 from_date, 3:i64 to_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
| 222 |
|
222 |
|
| 223 |
/**
|
223 |
/**
|
| - |
|
224 |
Returns at most 'limit' orders with the given statuses for the given warehouse starting from the given offset.
|
| - |
|
225 |
Pass the status as null and the limit as 0 to ignore them.
|
| - |
|
226 |
*/
|
| - |
|
227 |
list<Order> getOrdersInBatch(1:list<OrderStatus> statuses, 2:i64 offset, 3:i64 limit, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
| - |
|
228 |
|
| - |
|
229 |
/**
|
| - |
|
230 |
Returns the count of orders with the given statuses assigned to the given warehouse.
|
| - |
|
231 |
*/
|
| - |
|
232 |
i32 getOrderCount(1:list<OrderStatus> statuses, 2:i64 warehouseId) throws (1:TransactionServiceException ex),
|
| - |
|
233 |
|
| - |
|
234 |
/**
|
| 224 |
Returns orders within a range of their billing dates
|
235 |
Returns orders within a range of their billing dates
|
| 225 |
*/
|
236 |
*/
|
| 226 |
list<Order> getOrdersByBillingDate(1:OrderStatus status, 2:i64 start_billing_date, 3:i64 end_billing_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
237 |
list<Order> getOrdersByBillingDate(1:OrderStatus status, 2:i64 start_billing_date, 3:i64 end_billing_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
| 227 |
|
238 |
|
| 228 |
/**
|
239 |
/**
|