Subversion Repositories SmartDukaan

Rev

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

Rev 17990 Rev 19247
Line 208... Line 208...
208
	4:i64 stockQuantity,
208
	4:i64 stockQuantity,
209
	5:string grnDetail,
209
	5:string grnDetail,
210
	6:double avgWeightedNlc
210
	6:double avgWeightedNlc
211
}
211
}
212
 
212
 
-
 
213
struct BulkAddInventory{
-
 
214
	1:i64 item_id,
-
 
215
	2:i64 warehouse_id,
-
 
216
	3:i64 inventory
-
 
217
}
-
 
218
 
213
 
219
 
214
service InventoryService extends GenericService.GenericService{
220
service InventoryService extends GenericService.GenericService{
215
 
221
 
216
	i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
222
	i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
217
	
223
	
Line 484... Line 490...
484
	
490
	
485
	list<AmazonFbaInventorySnapshot> getAllAvailableAmazonFbaItemInventory();
491
	list<AmazonFbaInventorySnapshot> getAllAvailableAmazonFbaItemInventory();
486
	
492
	
487
	bool updateItemAvailabilityForItemIds(1:list<i64> itemIds)
493
	bool updateItemAvailabilityForItemIds(1:list<i64> itemIds)
488
	
494
	
-
 
495
	list<i64> addVendorItemPricingInBulk(1:list<VendorItemPricing> vendorItemPricingList)
-
 
496
	
-
 
497
	void addInventoryInBulk (1:list<BulkAddInventory> bulkInventoryList) throws (1:InventoryServiceException cex);
489
}
498
}
490
499