Subversion Repositories SmartDukaan

Rev

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

Rev 11526 Rev 11592
Line 229... Line 229...
229
	10:string couponCode,
229
	10:string couponCode,
230
	11:i64 pickupStoreId,
230
	11:i64 pickupStoreId,
231
	12:string message		//This is introduced to display custom message as and when required to the Website for user display.
231
	12:string message		//This is introduced to display custom message as and when required to the Website for user display.
232
}
232
}
233
 
233
 
-
 
234
struct CartPlus {
-
 
235
	1:Cart cart,
-
 
236
	2:string 	pinCode,
-
 
237
	3:bool needInsuranceInfo,
-
 
238
	4:list<string> validateCartMessages
-
 
239
}
-
 
240
 
234
enum WidgetType{
241
enum WidgetType{
235
	MY_RESEARCH,
242
	MY_RESEARCH,
236
	BROWSE_HISTORY
243
	BROWSE_HISTORY
237
}
244
}
238
 
245
 
Line 538... Line 545...
538
	
545
	
539
	/**
546
	/**
540
	 * Returns list of item ids which added to cart from startDate to endDate 
547
	 * Returns list of item ids which added to cart from startDate to endDate 
541
	 */
548
	 */
542
	list<i64> getProductsAddedToCart(1:i64 startDate, 2:i64 endDate)
549
	list<i64> getProductsAddedToCart(1:i64 startDate, 2:i64 endDate)
-
 
550
	
-
 
551
	/**
-
 
552
	* This method is speciically used to avoid overloadaed calls to userClient
-
 
553
	*/
-
 
554
	CartPlus validateCartPlus(1:i64 cartId, 2:i64 sourceId) throws (1:ShoppingCartException scex)
-
 
555
	
-
 
556
	
-
 
557
	
543
}
558
}
544
559