跳至內容
選單
此問題已被標幟
5138 瀏覽次數

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
1436
4
10月 24
3685
0
9月 22
38
1
3月 15
6949
2
1月 25
1129