Subversion Repositories SmartDukaan

Rev

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

Rev 7574 Rev 7613
Line 86... Line 86...
86
    3:string supplierName,
86
    3:string supplierName,
87
    4:i64 date,
87
    4:i64 date,
88
    5:i64 scannedQuantity
88
    5:i64 scannedQuantity
89
}
89
}
90
 
90
 
-
 
91
struct InTransitInventory {
-
 
92
	1:i64 itemId,
-
 
93
	2:i64 originWarehouseId,
-
 
94
	3:i64 destinationWarehouseId,
-
 
95
	4:i64 quantity,
-
 
96
	5:i64 transferDate,
-
 
97
}
-
 
98
 
91
struct InventoryAvailability{
99
struct InventoryAvailability{
92
	1:i64 itemId,
100
	1:i64 itemId,
93
	2:string brand,
101
	2:string brand,
94
	3:string modelName,
102
	3:string modelName,
95
	4:string modelNumber,
103
	4:string modelNumber,
Line 309... Line 317...
309
	 
317
	 
310
	 void scanForTransferIn(1:list<InventoryItem> inventoryItems, 2:ScanType type, 3:i64 transferLotId) throws (1:WarehouseServiceException wex);
318
	 void scanForTransferIn(1:list<InventoryItem> inventoryItems, 2:ScanType type, 3:i64 transferLotId) throws (1:WarehouseServiceException wex);
311
	 
319
	 
312
	 void scanForOursThirdPartyReceive(1:list<InventoryItem>inventoryItems, 2:i64 id) throws (1:WarehouseServiceException wex);
320
	 void scanForOursThirdPartyReceive(1:list<InventoryItem>inventoryItems, 2:i64 id) throws (1:WarehouseServiceException wex);
313
 
321
 
314
	 i64 getCurrentQuantityForNonSerializedInTransitItemInPhysicalWarehouse(1:i64 itemId, 2:i64 physicalWarehouseId) throws (1:WarehouseServiceException wex);	 
322
	 i64 getCurrentQuantityForNonSerializedInTransitItemInPhysicalWarehouse(1:i64 itemId, 2:i64 physicalWarehouseId) throws (1:WarehouseServiceException wex);
-
 
323
	 
-
 
324
	 list<InTransitInventory> getInTransitInventory(1:i64 originWarehouseId);
315
}
325
}
316
	 
326
	 
317
327