Subversion Repositories SmartDukaan

Rev

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

Rev 10308 Rev 10489
Line 19... Line 19...
19
  	MARKED_GOOD = 12;
19
  	MARKED_GOOD = 12;
20
  	WAREHOUSE_TRANSFER_IN = 13;
20
  	WAREHOUSE_TRANSFER_IN = 13;
21
  	WAREHOUSE_TRANSFER_OUT = 14;
21
  	WAREHOUSE_TRANSFER_OUT = 14;
22
  	BAD_SALE = 15;
22
  	BAD_SALE = 15;
23
  	DOA_REJECTED = 16;
23
  	DOA_REJECTED = 16;
-
 
24
  	DOA_CLOSED_BY_CREDIT_NOTE = 17;
24
}
25
}
25
 
26
 
26
enum TransferLotStatus {
27
enum TransferLotStatus {
27
	IN_TRANSIT = 1,
28
	IN_TRANSIT = 1,
28
	PARTIAL_TRANSFER = 2,
29
	PARTIAL_TRANSFER = 2,
Line 177... Line 178...
177
 
178
 
178
    /**
179
    /**
179
     * Scan non-serialized items.
180
     * Scan non-serialized items.
180
     */
181
     */
181
    void scan(1:InventoryItem inventoryItem, 2:ScanType type, 3:i64 quantity, 4:i64 billingWarehouseId, 5:i64 transferLotId) throws (1:WarehouseServiceException wex);
182
    void scan(1:InventoryItem inventoryItem, 2:ScanType type, 3:i64 quantity, 4:i64 billingWarehouseId, 5:i64 transferLotId) throws (1:WarehouseServiceException wex);
-
 
183
    
-
 
184
    /**
-
 
185
     * Scan non-serialized items.
-
 
186
     */
-
 
187
    void genericScan(1:InventoryItem inventoryItem, 2:Scan scan) throws (1:WarehouseServiceException wex);
182
 
188
 
183
    /**
189
    /**
184
     * Scan serialized items linked with an order. Returns its price.
190
     * Scan serialized items linked with an order. Returns its price.
185
     */
191
     */
186
    InventoryItem scanSerializedItemForOrder(1:string serialNumber, 2:ScanType type, 3:i64 orderId, 4:i64 fulfilmentWarehouseId, 5:double quantity, 6:i64 billingWarehouseId) throws (1:WarehouseServiceException wex);
192
    InventoryItem scanSerializedItemForOrder(1:string serialNumber, 2:ScanType type, 3:i64 orderId, 4:i64 fulfilmentWarehouseId, 5:double quantity, 6:i64 billingWarehouseId) throws (1:WarehouseServiceException wex);