| Line 186... |
Line 186... |
| 186 |
i64 addItem(1:Item item) throws (1:InventoryServiceException cex),
|
186 |
i64 addItem(1:Item item) throws (1:InventoryServiceException cex),
|
| 187 |
i64 updateItem(1:Item item) throws (1:InventoryServiceException cex),
|
187 |
i64 updateItem(1:Item item) throws (1:InventoryServiceException cex),
|
| 188 |
i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
|
188 |
i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
|
| 189 |
|
189 |
|
| 190 |
/**
|
190 |
/**
|
| - |
|
191 |
add a new vendor
|
| - |
|
192 |
*/
|
| - |
|
193 |
i64 addVendor(1:Vendor vendor) throws (1:InventoryServiceException cex),
|
| - |
|
194 |
bool addWarehouseVendorMapping(1:i64 warehouse_id, 2:i64 vendorId),
|
| - |
|
195 |
list<Vendor> getVendorsForWarehouse(1:i64 warehouse_id),
|
| - |
|
196 |
list<Warehouse> getWarehousesForVendor(1:i64 vendorId),
|
| - |
|
197 |
|
| - |
|
198 |
/**
|
| 191 |
Checks if the item given to the corresponding itemId is active. If it's active,
|
199 |
Checks if the item given to the corresponding itemId is active. If it's active,
|
| 192 |
whether it's risky and if it's risky, its inventory position.
|
200 |
whether it's risky and if it's risky, its inventory position.
|
| 193 |
*/
|
201 |
*/
|
| 194 |
ItemShippingInfo isActive(1:i64 itemId) throws (1:InventoryServiceException isex),
|
202 |
ItemShippingInfo isActive(1:i64 itemId) throws (1:InventoryServiceException isex),
|
| 195 |
|
203 |
|