跳至内容
菜单
此问题已终结
5135 查看

I need to override a JavaScript function in OpenERP 7, to disable some code which I don't need (to hide "Print" button and auto printing). Unfortunately this function calls _super on a parent class, so I also need to call it but without calling the function I'm trying to substitute. How can I call _super on the parent of the parent class? Both extend() and include() produce the same result in this case.

This is my complete code:

openerp.pos_test = function(instance) {
    var module = instance.point_of_sale;
    var _t = instance.web._t;


    module.ReceiptScreenWidget.include({
        show: function(){
            //this._super();

            var self = this;

            this.add_action_button({
                label: _t('Next Order'),
                icon: '/point_of_sale/static/src/img/icons/png48/go-next.png',
                click: function() { self.finishOrder(); },
            });
        },
    });
}

形象
丢弃
相关帖文 回复 查看 活动
1
11月 24
1435
4
10月 24
3684
0
9月 22
38
1
3月 15
6948
2
1月 25
1125