| Line 50... |
Line 50... |
| 50 |
|
50 |
|
| 51 |
service WarehouseService extends GenericService.GenericService {
|
51 |
service WarehouseService extends GenericService.GenericService {
|
| 52 |
/**
|
52 |
/**
|
| 53 |
* Creating inventory for a serialized item
|
53 |
* Creating inventory for a serialized item
|
| 54 |
*/
|
54 |
*/
|
| 55 |
InventoryItem createSerializedInventoryItem(1:i64 itemId, 2:string serialNumber, 3:i64 purchaseId) throws (1:WarehouseServiceException wex);
|
55 |
InventoryItem createSerializedInventoryItem(1:i64 itemId, 2:string itemNumber, 3:string serialNumber, 4:i64 purchaseId) throws (1:WarehouseServiceException wex);
|
| 56 |
|
56 |
|
| 57 |
/**
|
57 |
/**
|
| 58 |
* Creating inventory for a serialized item using item number
|
58 |
* Creating inventory for a serialized item using item number
|
| 59 |
*/
|
59 |
*/
|
| 60 |
InventoryItem createSerializedInventoryItemFromItemNumber(1:string itemNumber, 2:string serialNumber, 3:i64 purchaseId) throws (1:WarehouseServiceException wex);
|
60 |
InventoryItem createSerializedInventoryItemFromItemNumber(1:string itemNumber, 2:string serialNumber, 3:i64 purchaseId) throws (1:WarehouseServiceException wex);
|