| Line 12... |
Line 12... |
| 12 |
enum OrderStatus{
|
12 |
enum OrderStatus{
|
| 13 |
INIT,
|
13 |
INIT,
|
| 14 |
SUBMITTED_FOR_PROCESSING,
|
14 |
SUBMITTED_FOR_PROCESSING,
|
| 15 |
ACCEPTED,
|
15 |
ACCEPTED,
|
| 16 |
INVENTORY_LOW,
|
16 |
INVENTORY_LOW,
|
| 17 |
REJECT,
|
17 |
REJECTED,
|
| 18 |
BILLED,
|
18 |
BILLED,
|
| 19 |
READY_FOR_SHIPPING,
|
19 |
READY_FOR_SHIPPING,
|
| 20 |
SHIPPED_FROM_WH,
|
20 |
SHIPPED_FROM_WH,
|
| 21 |
SHIPPED_TO_LOGST,
|
21 |
SHIPPED_TO_LOGST,
|
| 22 |
IN_TRANSIT,
|
22 |
IN_TRANSIT,
|
| Line 169... |
Line 169... |
| 169 |
bool changeTransactionStatus(1:i64 transactionId, 2:TransactionStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
169 |
bool changeTransactionStatus(1:i64 transactionId, 2:TransactionStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
| 170 |
*/
|
170 |
*/
|
| 171 |
|
171 |
|
| 172 |
list<Order> getAllOrders(1:OrderStatus status, 2:i64 from_date, 3:i64 to_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
172 |
list<Order> getAllOrders(1:OrderStatus status, 2:i64 from_date, 3:i64 to_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
| 173 |
bool changeOrderStatus(1:i64 orderId, 2:OrderStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
173 |
bool changeOrderStatus(1:i64 orderId, 2:OrderStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
| - |
|
174 |
bool addBillingDetails(1:i64 orderId, 2:string invoice_number, 3:string billed_by) throws (1:TransactionServiceException ex),
|
| - |
|
175 |
|
| 174 |
|
176 |
|
| 175 |
list<Order> getOrdersForTransaction(1:i64 transactionId) throws (1:TransactionServiceException ex),
|
177 |
list<Order> getOrdersForTransaction(1:i64 transactionId) throws (1:TransactionServiceException ex),
|
| 176 |
list<Order> getOrdersForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:OrderStatus status) throws (1:TransactionServiceException ex),
|
178 |
list<Order> getOrdersForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:OrderStatus status) throws (1:TransactionServiceException ex),
|
| 177 |
i64 createOrder(1:Order order) throws (1:TransactionServiceException ex),
|
179 |
i64 createOrder(1:Order order) throws (1:TransactionServiceException ex),
|
| 178 |
Order getOrder(1:i64 id) throws (1:TransactionServiceException ex),
|
180 |
Order getOrder(1:i64 id) throws (1:TransactionServiceException ex),
|