You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
364 B

odoo.define('product_click_search_reset', function (require) {
"use strict";
var screens = require('point_of_sale.screens');
screens.ProductScreenWidget.include({
click_product: function (product) {
var self = this;
self.super(product);
self.product_categories_widget.clear_search();
},
});
});