Subversion Repositories SmartDukaan

Rev

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

Rev 8959 Rev 9404
Line 142... Line 142...
142
	2:i64 warehouse_id
142
	2:i64 warehouse_id
143
	3:i64 held
143
	3:i64 held
144
	4:i64 source
144
	4:i64 source
145
}
145
}
146
 
146
 
-
 
147
struct SnapdealInventoryItem{
-
 
148
	1:i64 item_id
-
 
149
	2:i64 availability
-
 
150
	3:i64 lastUpdatedOnSnapdeal
-
 
151
}
-
 
152
 
-
 
153
 
147
service InventoryService extends GenericService.GenericService{
154
service InventoryService extends GenericService.GenericService{
148
 
155
 
149
	i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
156
	i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
150
	
157
	
151
	/**
158
	/**
Line 373... Line 380...
373
 
380
 
374
	void addUpdateHoldInventory(1:i64 itemId, 2:i64 warehouseId, 3:i64 holdQuantity, 4:i64 source);
381
	void addUpdateHoldInventory(1:i64 itemId, 2:i64 warehouseId, 3:i64 holdQuantity, 4:i64 source);
375
	
382
	
376
	i64 getAmazonFbaItemInventory(1:i64 itemId);
383
	i64 getAmazonFbaItemInventory(1:i64 itemId);
377
	
384
	
378
	list<AmazonFbaInventorySnapshot> getAllAmazonFbaItemInventory()
385
	list<AmazonFbaInventorySnapshot> getAllAmazonFbaItemInventory();
-
 
386
	
-
 
387
	list<i64> getOursGoodWarehouseIdsForLocation(1:i64 state_id);
-
 
388
	
-
 
389
	i64 getHoldInventoryDetailForItemForWarehouseIdExceptSource(1:i64 id,2:i64 warehouse_id,3:i64 source);
-
 
390
	
-
 
391
	SnapdealInventoryItem getSnapdealInventoryForItem(1:i64 item_id);
379
	
392
	
380
	list<i64> getOursGoodWarehouseIdsForLocation(1:i64 state_id)
393
	void addOrUpdateSnapdealInventoryForItem(1:SnapdealInventoryItem snapdealinventoryitem)
381
	
394
	
382
	i64 getHoldInventoryDetailForItemForWarehouseIdExceptSource(1:i64 id,2:i64 warehouse_id,3:i64 source)
395
	double getNlcForWarehouse(1:i64 warehouse_id,2:i64 item_id)
383
	
396
	
384
}
397
}