Subversion Repositories SmartDukaan

Rev

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

Rev 687 Rev 709
Line 284... Line 284...
284
	
284
	
285
	/**
285
	/**
286
	 The second parameter is a map of item ids and their quantities which have been successfully processed.
286
	 The second parameter is a map of item ids and their quantities which have been successfully processed.
287
	 This methods removes the specified quantiry of the specified item from the cart.
287
	 This methods removes the specified quantiry of the specified item from the cart.
288
	*/
288
	*/
289
	bool resetCart(1:i64 cartId, 2:map<i64, i64> items) throws (1:ShoppingCartException scex),
289
	bool resetCart(1:i64 cartId, 2:map<i64, double> items) throws (1:ShoppingCartException scex),
290
	
290
	
291
	void addWidget(1:Widget widget) throws (1:WidgetException scx),
291
	void addWidget(1:Widget widget) throws (1:WidgetException scx),
292
	void addItemToWidget(1:i64 widget_id, 2:list<i64> items) throws (1:WidgetException scx),
292
	void addItemToWidget(1:i64 widget_id, 2:list<i64> items) throws (1:WidgetException scx),
293
	void deleteItemFromWidget(1:i64 widget_id, 2:i64 item_id) throws (1:WidgetException scx),
293
	void deleteItemFromWidget(1:i64 widget_id, 2:i64 item_id) throws (1:WidgetException scx),
294
	void updateWidget(1:i64 widgetId, 2:bool enable) throws (1:WidgetException scx),
294
	void updateWidget(1:i64 widgetId, 2:bool enable) throws (1:WidgetException scx),