Hello everybody!!!
I want to inherit the popup that is open in creation of a new variant of article in a purchase order.
I want to add an event in sale.ProductConfiguratorMixin.
I have tried this but still need your help please.
odoo.define('test.SProductConfiguratorMixin', function (require) {
'use strict';
var ProductConfiguratorMixin = require('sale.ProductConfiguratorMixin');
var SProductConfiguratorMixin = ProductConfiguratorMixin.include({
events: {
'change .totalAmt': 'onChangePriceUnit',
},