Subversion Repositories SmartDukaan

Rev

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

Rev 1910 Rev 1924
Line 165... Line 165...
165
	*/
165
	*/
166
	bool reduceReservationCount(1:i64 itemId, 2:i64 warehouseId, 3:double quantity) throws (1:InventoryServiceException cex),
166
	bool reduceReservationCount(1:i64 itemId, 2:i64 warehouseId, 3:double quantity) throws (1:InventoryServiceException cex),
167
	
167
	
168
	// for home page .... best deals, best sellers and latest arrivals
168
	// for home page .... best deals, best sellers and latest arrivals
169
	list<Item> getBestSellers() throws (1:InventoryServiceException isex),
169
	list<Item> getBestSellers() throws (1:InventoryServiceException isex),
170
	list<i64> getBestSellersCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:i64 category) throws (1:InventoryServiceException cex),
170
	list<i64> getBestSellersCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:i64 category) throws (1:InventoryServiceException cex),
171
	i64 getBestSellersCount() throws (1:InventoryServiceException cex),
171
	i64 getBestSellersCount() throws (1:InventoryServiceException cex),
172
	
172
	
173
	list<Item> getBestDeals() throws (1:InventoryServiceException isex),
173
	list<Item> getBestDeals() throws (1:InventoryServiceException isex),
174
	list<i64> getBestDealsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:i64 category) throws (1:InventoryServiceException cex),
174
	list<i64> getBestDealsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:i64 category) throws (1:InventoryServiceException cex),
175
	i64 getBestDealsCount() throws (1:InventoryServiceException cex),
175
	i64 getBestDealsCount() throws (1:InventoryServiceException cex),
176
	
176
	
177
	list<Item> getLatestArrivals() throws (1:InventoryServiceException isex),
177
	list<Item> getLatestArrivals() throws (1:InventoryServiceException isex),
178
	list<i64> getLatestArrivalsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:i64 category) throws (1:InventoryServiceException cex),
178
	list<i64> getLatestArrivalsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:i64 category) throws (1:InventoryServiceException cex),
179
	i64 getLatestArrivalsCount() throws (1:InventoryServiceException cex),
179
	i64 getLatestArrivalsCount() throws (1:InventoryServiceException cex),
180
	
180
	
181
	
181
	
182
	i64 generateNewEntityID(),
182
	i64 generateNewEntityID(),
183
	
183