Subversion Repositories SmartDukaan

Rev

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

Rev 4934 Rev 4957
Line 393... Line 393...
393
	Returns list of items marked as risky.
393
	Returns list of items marked as risky.
394
	*/
394
	*/
395
	list<Item> getItemsByRiskyFlag(),
395
	list<Item> getItemsByRiskyFlag(),
396
	
396
	
397
	/**
397
	/**
398
	Returns list of items with any status except PHASED_OUT and filtered by category.
398
	Returns list of items with any status except PHASED_OUT and filtered by category, brand.
399
	Raises exception if category is null. 
-
 
400
	*/
399
	*/
401
	list<Item> getItemsByCategory(1:string category),
400
	list<Item> getItemsForMasterSheet(1:string category, 2:string brand),
402
	
401
	
403
	/**
402
	/**
404
	Returns list of catalog ids of items with same similarity index as of the given itemId 
403
	Returns list of catalog ids of items with same similarity index as of the given itemId 
405
	*/
404
	*/
406
	list<i64> getSimilarItemsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:i64 itemId),
405
	list<i64> getSimilarItemsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:i64 itemId),
Line 417... Line 416...
417
	
416
	
418
	/**
417
	/**
419
		Returns list of brand names for a given category Id
418
		Returns list of brand names for a given category Id
420
	*/
419
	*/
421
	list<string> getAllBrandsByCategory(1:i64 categoryId),
420
	list<string> getAllBrandsByCategory(1:i64 categoryId),
-
 
421
    
-
 
422
    /**
-
 
423
		Returns list of brand names
422
 
424
	*/
-
 
425
	list<string> getAllBrands(),
-
 
426
    
423
	/**
427
	/**
424
	Return list of all sources
428
	Return list of all sources
425
	*/
429
	*/
426
	list<Source> getAllSources(), 
430
	list<Source> getAllSources(), 
427
		
431