| Line 110... |
Line 110... |
| 110 |
6:i64 createdOn,
|
110 |
6:i64 createdOn,
|
| 111 |
7:i64 expectedDeliveryTime,
|
111 |
7:i64 expectedDeliveryTime,
|
| 112 |
8:TransactionStatus transactionStatus,
|
112 |
8:TransactionStatus transactionStatus,
|
| 113 |
9:string statusDescription,
|
113 |
9:string statusDescription,
|
| 114 |
10:i64 customer_id,
|
114 |
10:i64 customer_id,
|
| 115 |
11:i64 shoppingCartid
|
115 |
11:i64 shoppingCartid,
|
| - |
|
116 |
12:i64 warehouse_id
|
| 116 |
}
|
117 |
}
|
| 117 |
|
118 |
|
| 118 |
struct Alert{
|
119 |
struct Alert{
|
| 119 |
1:i64 id,
|
120 |
1:i64 id,
|
| 120 |
2:i64 transaction_id,
|
121 |
2:i64 transaction_id,
|
| Line 143... |
Line 144... |
| 143 |
i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
|
144 |
i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
|
| 144 |
/**
|
145 |
/**
|
| 145 |
Get transaction methods.
|
146 |
Get transaction methods.
|
| 146 |
**/
|
147 |
**/
|
| 147 |
Transaction getTransaction(1:i64 id) throws (1:TransactionServiceException ex),
|
148 |
Transaction getTransaction(1:i64 id) throws (1:TransactionServiceException ex),
|
| 148 |
list<Transaction> getAllTransactions(1:TransactionStatus status, 2:i64 from_date, 3:i64 to_date) throws (1:TransactionServiceException ex),
|
149 |
list<Transaction> getAllTransactions(1:TransactionStatus status, 2:i64 from_date, 3:i64 to_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
|
| 149 |
list<Transaction> getTransactionsForShipmentStatus(1:ShipmentStatus status, 2:i64 from_date, 3:i64 to_date) throws (1:TransactionServiceException ex),
|
150 |
list<Transaction> getTransactionsForShipmentStatus(1:ShipmentStatus status, 2:i64 from_date, 3:i64 to_date) throws (1:TransactionServiceException ex),
|
| 150 |
list<Transaction> getTransactionsForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:TransactionStatus status) throws (1:TransactionServiceException ex),
|
151 |
list<Transaction> getTransactionsForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:TransactionStatus status) throws (1:TransactionServiceException ex),
|
| 151 |
list<Transaction> getTransactionsForCustomerAndShipmentStatus(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:ShipmentStatus status) throws (1:TransactionServiceException ex),
|
152 |
list<Transaction> getTransactionsForCustomerAndShipmentStatus(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:ShipmentStatus status) throws (1:TransactionServiceException ex),
|
| 152 |
list<Transaction> getTransactionsForShoppingCartId(1:i64 shoppingCartId) throws (1:TransactionServiceException ex),
|
153 |
list<Transaction> getTransactionsForShoppingCartId(1:i64 shoppingCartId) throws (1:TransactionServiceException ex),
|
| 153 |
TransactionStatus getTransactionStatus(1:i64 transactionId) throws (1:TransactionServiceException ex),
|
154 |
TransactionStatus getTransactionStatus(1:i64 transactionId) throws (1:TransactionServiceException ex),
|