Subversion Repositories SmartDukaan

Rev

Rev 4618 | Rev 5110 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4618 Rev 4846
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);