Subversion Repositories SmartDukaan

Rev

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

Rev 483 Rev 502
Line 108... Line 108...
108
	ItemInventory getItemInventoryByCatalogId(1:i64 item_id) throws (1:InventoryServiceException cex),
108
	ItemInventory getItemInventoryByCatalogId(1:i64 item_id) throws (1:InventoryServiceException cex),
109
	i64 getItemAvailibilityAtWarehouse(1:i64 warehouse_id, 2:i64 item_id) throws (1:InventoryServiceException cex),
109
	i64 getItemAvailibilityAtWarehouse(1:i64 warehouse_id, 2:i64 item_id) throws (1:InventoryServiceException cex),
110
	list<Warehouse> getAllWarehouses(1:bool isActive) throws (1:InventoryServiceException cex),
110
	list<Warehouse> getAllWarehouses(1:bool isActive) throws (1:InventoryServiceException cex),
111
	Warehouse getWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
111
	Warehouse getWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
112
	list<Warehouse> getAllWarehousesForItem(1:i64 item_id) throws (1:InventoryServiceException cex),
112
	list<Warehouse> getAllWarehousesForItem(1:i64 item_id) throws (1:InventoryServiceException cex),
113
	list<Item> getAllItemsForWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),		
113
	list<Item> getAllItemsForWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
-
 
114
	
-
 
115
	// for home page .... best deals, best sellers and latest arrivals
-
 
116
	list<i64> getBestSellers() throws (1:InventoryServiceException cex),
-
 
117
	list<i64> getBestDeals() throws (1:InventoryServiceException cex),
-
 
118
	list<i64> getLatestArrivals() throws (1:InventoryServiceException cex)		
114
}
119
}
115
 
120