有没有人知道在销售点点击产品时会调用哪个功能? 我想实现一些代码,以便在将产品添加到订单时自动包含一些折扣。
提前致谢!
答案 0 :(得分:1)
为此你只需要扩展ProductListWidget及其名为click_product_handler()的方法。 喜欢以下 但在此之前,只需在基地查看该方法。
module.ProductListWidget = module.ProductListWidget.extend({
init: function(parent, options) {
this._super(parent,options);
var self = this;
this.click_product_handler = function(event){
<< Your Code to add discount >>
}
}