| Line 144... |
Line 144... |
| 144 |
Transaction getTransaction(1:i64 id) throws (1:TransactionServiceException ex),
|
144 |
Transaction getTransaction(1:i64 id) throws (1:TransactionServiceException ex),
|
| 145 |
list<Transaction> getTransactionsForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:TransactionStatus status) throws (1:TransactionServiceException ex),
|
145 |
list<Transaction> getTransactionsForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:TransactionStatus status) throws (1:TransactionServiceException ex),
|
| 146 |
list<Transaction> getTransactionsForShoppingCartId(1:i64 shoppingCartId) throws (1:TransactionServiceException ex),
|
146 |
list<Transaction> getTransactionsForShoppingCartId(1:i64 shoppingCartId) throws (1:TransactionServiceException ex),
|
| 147 |
TransactionStatus getTransactionStatus(1:i64 transactionId) throws (1:TransactionServiceException ex),
|
147 |
TransactionStatus getTransactionStatus(1:i64 transactionId) throws (1:TransactionServiceException ex),
|
| 148 |
bool changeTransactionStatus(1:i64 transactionId, 2:TransactionStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
148 |
bool changeTransactionStatus(1:i64 transactionId, 2:TransactionStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
| - |
|
149 |
|
| - |
|
150 |
bool emailTransactionInfoToUser(1:i64 transactionId) throws (1:TransactionServiceException ex),
|
| 149 |
|
151 |
|
| 150 |
// Order getter and setters
|
152 |
// Order getter and setters
|
| 151 |
|
153 |
|
| 152 |
/*
|
154 |
/*
|
| 153 |
list<Transaction> getTransactionsForShipmentStatus(1:ShipmentStatus status, 2:i64 from_date, 3:i64 to_date) throws (1:TransactionServiceException ex),
|
155 |
list<Transaction> getTransactionsForShipmentStatus(1:ShipmentStatus status, 2:i64 from_date, 3:i64 to_date) throws (1:TransactionServiceException ex),
|
| 154 |
list<Transaction> getTransactionsForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:TransactionStatus status) throws (1:TransactionServiceException ex),
|
156 |
list<Transaction> getTransactionsForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:TransactionStatus status) throws (1:TransactionServiceException ex),
|
| Line 163... |
Line 165... |
| 163 |
/**
|
165 |
/**
|
| 164 |
Returns orders within a range of their billing dates
|
166 |
Returns orders within a range of their billing dates
|
| 165 |
*/
|
167 |
*/
|
| 166 |
list<Order> getOrdersByBillingDate(1:OrderStatus status, 2:i64 start_billing_date, 3:i64 end_billing_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
168 |
list<Order> getOrdersByBillingDate(1:OrderStatus status, 2:i64 start_billing_date, 3:i64 end_billing_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
| 167 |
|
169 |
|
| - |
|
170 |
/**
|
| - |
|
171 |
Returns order ids for orders which can be returned
|
| - |
|
172 |
*/
|
| - |
|
173 |
list<i64> getReturnableOrdersForCustomer(1:i64 customer_id, 2:i64 limit) throws (1:TransactionServiceException ex),
|
| - |
|
174 |
|
| - |
|
175 |
/**
|
| - |
|
176 |
Returns order ids for orders which can be cancelled
|
| - |
|
177 |
*/
|
| - |
|
178 |
list<i64> getCancellableOrdersForCustomer(1:i64 customer_id, 2:i64 limit) throws (1:TransactionServiceException ex),
|
| - |
|
179 |
|
| 168 |
bool changeOrderStatus(1:i64 orderId, 2:OrderStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
180 |
bool changeOrderStatus(1:i64 orderId, 2:OrderStatus status, 3:string description) throws (1:TransactionServiceException ex),
|
| 169 |
|
181 |
|
| 170 |
/**
|
182 |
/**
|
| 171 |
Add billing details such as the bill number and the biller to the Order.
|
183 |
Add billing details such as the bill number and the biller to the Order.
|
| 172 |
*/
|
184 |
*/
|