Subversion Repositories SmartDukaan

Rev

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

Rev 2841 Rev 2975
Line 203... Line 203...
203
	
203
	
204
	list<Item> getBestDeals() throws (1:InventoryServiceException isex),
204
	list<Item> getBestDeals() throws (1:InventoryServiceException isex),
205
	list<i64> getBestDealsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:i64 category) throws (1:InventoryServiceException cex),
205
	list<i64> getBestDealsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:i64 category) throws (1:InventoryServiceException cex),
206
	i64 getBestDealsCount() throws (1:InventoryServiceException cex),
206
	i64 getBestDealsCount() throws (1:InventoryServiceException cex),
207
	
207
	
-
 
208
	/**
-
 
209
	Returns a list of items sorted in the descending order by start date.
-
 
210
	The list is limited to the 'latest_arrivals_count' configuraiton parameter.
-
 
211
	*/
208
	list<Item> getLatestArrivals() throws (1:InventoryServiceException isex),
212
	list<Item> getLatestArrivals() throws (1:InventoryServiceException isex),
-
 
213
 
-
 
214
	/**
-
 
215
	Returns the list of catalog ids of latest arrivals in the given categories of the given brand.
-
 
216
	To ignore the categories, pass the list as empty. To ignore brand, pass it as null.   
-
 
217
	*/
209
	list<i64> getLatestArrivalsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:i64 category) throws (1:InventoryServiceException cex),
218
	list<i64> getLatestArrivalsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:string brand, 4:list<i64> categories) throws (1:InventoryServiceException cex),
-
 
219
	
-
 
220
	/**
-
 
221
	Get the total number of latest arrivals we are willing to show.
-
 
222
	The count's upper bound is the 'latest_arrivals_count' configuraiton parameter.
-
 
223
	*/
210
	i64 getLatestArrivalsCount() throws (1:InventoryServiceException cex),
224
	i64 getLatestArrivalsCount() throws (1:InventoryServiceException cex),
211
	
225
	
212
	
226
	
213
	i64 generateNewEntityID(),
227
	i64 generateNewEntityID(),
214
	
228