跳至內容
選單
此問題已被標幟
1 回覆
3109 瀏覽次數

I need to modify a function in model.js. I couldn't inherit the .js file in odoo9. How can I inherit the .js file odoo?

頭像
捨棄
最佳答案

You should first import the models using this statement:

var models = require('point_of_sale.models');

Then you can alter a specific function using:

models.TheWidgetThatContainsTheFunction.include({
    the_function_to_modify: function(){        //don't forget to include function vars!
         this.super();
         // ... do stuff here
         // return if necessary
    },
});


頭像
捨棄
作者

Thank you Pieter