| Line 118... |
Line 118... |
| 118 |
20:i64 created_timestamp,
|
118 |
20:i64 created_timestamp,
|
| 119 |
21:i64 accepted_timestamp,
|
119 |
21:i64 accepted_timestamp,
|
| 120 |
22:i64 billing_timestamp,
|
120 |
22:i64 billing_timestamp,
|
| 121 |
23:i64 shipping_timestamp,
|
121 |
23:i64 shipping_timestamp,
|
| 122 |
24:i64 delivery_timestamp,
|
122 |
24:i64 delivery_timestamp,
|
| - |
|
123 |
25:i64 jacket_number
|
| 123 |
}
|
124 |
}
|
| 124 |
|
125 |
|
| 125 |
struct Transaction{
|
126 |
struct Transaction{
|
| 126 |
1:i64 id,
|
127 |
1:i64 id,
|
| 127 |
2:list<Order> orders,
|
128 |
2:list<Order> orders,
|
| Line 169... |
Line 170... |
| 169 |
bool changeTransactionStatus(1:i64 transactionId, 2:TransactionStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
170 |
bool changeTransactionStatus(1:i64 transactionId, 2:TransactionStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
| 170 |
*/
|
171 |
*/
|
| 171 |
|
172 |
|
| 172 |
list<Order> getAllOrders(1:OrderStatus status, 2:i64 from_date, 3:i64 to_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
173 |
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),
|
174 |
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 |
bool addBillingDetails(1:i64 orderId, 2:string invoice_number, 3:i64 jacket_number, 4:string billed_by) throws (1:TransactionServiceException ex),
|
| 175 |
|
176 |
|
| 176 |
|
177 |
|
| 177 |
list<Order> getOrdersForTransaction(1:i64 transactionId) throws (1:TransactionServiceException ex),
|
178 |
list<Order> getOrdersForTransaction(1:i64 transactionId) 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),
|
179 |
list<Order> getOrdersForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:OrderStatus status) throws (1:TransactionServiceException ex),
|
| 179 |
i64 createOrder(1:Order order) throws (1:TransactionServiceException ex),
|
180 |
i64 createOrder(1:Order order) throws (1:TransactionServiceException ex),
|