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
365 B
12 lines
365 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();
|
|
},
|
|
});
|
|
});
|