Subversion Repositories SmartDukaan

Rev

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

Rev 5372 Rev 5437
Line 58... Line 58...
58
    2:string message
58
    2:string message
59
}
59
}
60
 
60
 
61
service WarehouseService extends GenericService.GenericService {
61
service WarehouseService extends GenericService.GenericService {
62
    /**
62
    /**
63
     * Creating inventory for a serialized item
-
 
64
     */
-
 
65
    InventoryItem createSerializedInventoryItem(1:i64 itemId, 2:string itemNumber, 3:string serialNumber, 4:i64 purchaseId) throws (1:WarehouseServiceException wex);
-
 
66
 
-
 
67
    /**
-
 
68
     * Creating inventory for a serialized item using item number
-
 
69
     */
-
 
70
    InventoryItem createSerializedInventoryItemFromItemNumber(1:string itemNumber, 2:string serialNumber, 3:i64 purchaseId) throws (1:WarehouseServiceException wex);
-
 
71
 
-
 
72
    /**
-
 
73
     * Creates inventory for an unserailized item
-
 
74
     */
-
 
75
    InventoryItem createInventoryItem(1:i64 itemId, 2:i64 quantity, 3:i64 purchaseId) throws (1:WarehouseServiceException wex);
-
 
76
 
-
 
77
    /**
-
 
78
     * Retrieves serialized inventory item given a serial number
63
     * Retrieves serialized inventory item given a serial number
79
     */
64
     */
80
    InventoryItem getInventoryItem(1:string serialNumber) throws (1:WarehouseServiceException wex);
65
    InventoryItem getInventoryItem(1:string serialNumber) throws (1:WarehouseServiceException wex);
81
 
66
 
82
    /**
67
    /**