Subversion Repositories SmartDukaan

Rev

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

Rev 9762 Rev 10050
Line 149... Line 149...
149
	2:i64 availability
149
	2:i64 availability
150
	3:i64 lastUpdatedOnSnapdeal
150
	3:i64 lastUpdatedOnSnapdeal
151
	4:i64 pendingOrders
151
	4:i64 pendingOrders
152
}
152
}
153
 
153
 
-
 
154
struct FlipkartInventorySnapshot{
-
 
155
	1:i64 item_id
-
 
156
	2:i64 availability
-
 
157
	3:i64 createdOrders
-
 
158
	4:i64 heldOrders
-
 
159
}
-
 
160
 
154
 
161
 
155
service InventoryService extends GenericService.GenericService{
162
service InventoryService extends GenericService.GenericService{
156
 
163
 
157
	i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
164
	i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
158
	
165
	
Line 403... Line 410...
403
	
410
	
404
	list<SnapdealInventoryItem> getSnapdealInventorySnapshot()
411
	list<SnapdealInventoryItem> getSnapdealInventorySnapshot()
405
	
412
	
406
	list<HoldInventoryDetail> getHoldInventoryDetails(1:i64 itemId, 2:i64 warehouseId, 3:i64 source)
413
	list<HoldInventoryDetail> getHoldInventoryDetails(1:i64 itemId, 2:i64 warehouseId, 3:i64 source)
407
	
414
	
-
 
415
	void addOrUpdateFlipkartInventorySnapshot(list<FlipkartInventorySnapshot> flipkartInventorySnapshot)
-
 
416
	
-
 
417
	list<FlipkartInventorySnapshot> getFlipkartInventorySnapshot()
-
 
418
	
408
}
419
}