Subversion Repositories SmartDukaan

Rev

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

Rev 3848 Rev 3872
Line 402... Line 402...
402
	list<SourceItemPricing> getAllSourcePricing(1:i64 itemId) throws (1:InventoryServiceException cex),
402
	list<SourceItemPricing> getAllSourcePricing(1:i64 itemId) throws (1:InventoryServiceException cex),
403
	
403
	
404
	/**
404
	/**
405
	Get the item for a given itemId and sourceId. MRP and sellingPrice will be updated for source if we have different prices for source.
405
	Get the item for a given itemId and sourceId. MRP and sellingPrice will be updated for source if we have different prices for source.
406
	*/
406
	*/
407
	Item getItemForSource(1:i64 item_id, 2:optional i64  sourceId) throws (1:InventoryServiceException cex)
407
	Item getItemForSource(1:i64 item_id, 2:optional i64  sourceId) throws (1:InventoryServiceException cex),
-
 
408
	
-
 
409
	/**
-
 
410
	Searches items matching the the given terms in the catalog and returns results within the specified range.
-
 
411
	*/
-
 
412
	list<Item> searchItemsInRange(1:list<string> searchTerms, 2:i64 offset, 3:i64 limit),
-
 
413
	
-
 
414
	/**
-
 
415
	Gets the count of search results for the given search terms so that the user can go through all the pages.
-
 
416
	*/
-
 
417
	i32 getSearchResultCount(1:list<string> searchTerms)
408
}
418
}
409
 
419