Answers for "add on click event on button on payment screen odoo pos"

CSS
0

add on click event on button on payment screen odoo pos

var screens = require('point_of_sale.screens');
screens.PaymentScreenWidget.include({
    renderElement: function() {
        var self = this;
        this._super();
        this.$('.js_clear_orderline').click(function(){
            
        });
    },
});
Posted by: Guest on February-27-2022

Browse Popular Code Answers by Language