Subversion Repositories SmartDukaan

Rev

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

Rev 2033 Rev 2063
Line 87... Line 87...
87
	23:map<string,string> otherInfo,
87
	23:map<string,string> otherInfo,
88
	24:string bestDealText,
88
	24:string bestDealText,
89
	25:double bestDealValue,
89
	25:double bestDealValue,
90
	26:double dealerPrice,
90
	26:double dealerPrice,
91
	27:bool defaultForEntity,
91
	27:bool defaultForEntity,
92
	28:i64 updatedOn
92
	28:i64 updatedOn,
-
 
93
	29:i64 bestSellingRank
93
}
94
}
94
 
95
 
95
struct VendorItemPricing{
96
struct VendorItemPricing{
96
	1:i64 vendorId,
97
	1:i64 vendorId,
97
	2:i64 itemId,
98
	2:i64 itemId,
Line 227... Line 228...
227
	Raises an exception if either the item or vendor can't be found corresponding to their ids.
228
	Raises an exception if either the item or vendor can't be found corresponding to their ids.
228
	Raises an exception if no pricing exists for vendor-item mapping.
229
	Raises an exception if no pricing exists for vendor-item mapping.
229
	*/
230
	*/
230
	void updateVendorItemPricing(1:VendorItemPricing vendorItemPricing) throws (1:InventoryServiceException cex),
231
	void updateVendorItemPricing(1:VendorItemPricing vendorItemPricing) throws (1:InventoryServiceException cex),
231
	
232
	
-
 
233
	/**
-
 
234
	Return list of all vendors
-
 
235
	*/
-
 
236
	list<Vendor> getAllVendors()
-
 
237
	
232
}
238
}
233
 
239