Subversion Repositories SmartDukaan

Rev

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

Rev 2491 Rev 2807
Line 90... Line 90...
90
	26:optional double dealerPrice,
90
	26:optional double dealerPrice,
91
	27:bool defaultForEntity,
91
	27:bool defaultForEntity,
92
	28:i64 updatedOn,
92
	28:i64 updatedOn,
93
	29:optional i64 bestSellingRank, 
93
	29:optional i64 bestSellingRank, 
94
	30:string hotspotCategory,
94
	30:string hotspotCategory,
95
	31:bool risky
95
	31:bool risky,
-
 
96
	32:i64 similarityIndex
96
}
97
}
97
 
98
 
98
struct VendorItemPricing{
99
struct VendorItemPricing{
99
	1:i64 vendorId,
100
	1:i64 vendorId,
100
	2:i64 itemId,
101
	2:i64 itemId,
Line 279... Line 280...
279
	
280
	
280
	/**
281
	/**
281
	Returns list of items with any status except PHASED_OUT and filtered by vendor category.
282
	Returns list of items with any status except PHASED_OUT and filtered by vendor category.
282
	Raises exception if vendorCategory is null. 
283
	Raises exception if vendorCategory is null. 
283
	*/
284
	*/
284
	list<Item> getItemsByVendorCategory(1:string vendorCategory)
285
	list<Item> getItemsByVendorCategory(1:string vendorCategory),
-
 
286
	
-
 
287
	/**
-
 
288
	Returns list of catalog ids of items with same similarity index as of the given itemId 
-
 
289
	*/
-
 
290
	list<i64> getSimilarItemsCatalogIds(1:i64 beginIndex, 2:i64 totalItems, 3:i64 itemId),
285
}
291
}
286
 
292