| Line 129... |
Line 129... |
| 129 |
Returns the purchase order with the given id. Throws an exception if there is no such purchase order.
|
129 |
Returns the purchase order with the given id. Throws an exception if there is no such purchase order.
|
| 130 |
*/
|
130 |
*/
|
| 131 |
PurchaseOrder getPurchaseOrder(1:i64 id) throws (1:WarehouseServiceException wex),
|
131 |
PurchaseOrder getPurchaseOrder(1:i64 id) throws (1:WarehouseServiceException wex),
|
| 132 |
|
132 |
|
| 133 |
/**
|
133 |
/**
|
| - |
|
134 |
Returns the supplier with the given order id. Throws an exception if there is no such supplier.
|
| - |
|
135 |
*/
|
| - |
|
136 |
Supplier getSupplier(1:i64 id) throws (1:WarehouseServiceException wex),
|
| - |
|
137 |
|
| - |
|
138 |
/**
|
| 134 |
Creates a purchase for the given purchase order.
|
139 |
Creates a purchase for the given purchase order.
|
| 135 |
Throws an exception if no more purchases are allowed against the given purchase order.
|
140 |
Throws an exception if no more purchases are allowed against the given purchase order.
|
| 136 |
*/
|
141 |
*/
|
| 137 |
i64 startPurchase(1:i64 purchaseOrderId, 2:string invoiceNumber, 3:double freightCharges) throws (1:WarehouseServiceException wex),
|
142 |
i64 startPurchase(1:i64 purchaseOrderId, 2:string invoiceNumber, 3:double freightCharges) throws (1:WarehouseServiceException wex),
|
| 138 |
|
143 |
|