如何扩展 POS 中的初始化函数 models.js
how to extend the initialize function in POS models.js
我想在初始化函数中添加变量,但我不知道如何正确地做
这是我现在尝试过的方法
odoo.define('tw_pos_inherit_model.attemptInherit', function (require) {
"use strict";
var POSInheritmodel = require('point_of_sale.models');
var _super_order = POSInheritmodel.Order.prototype;
POSInheritmodel.Order = POSInheritmodel.Order.extend({
initialize: function(session,attributes){
var self = this;
this.additional_discount = 0;
_super_order.initialize.apply(this,arguments);
},
我试过按照所说的去做 here 但这个例子是针对 PosModel 而不是 Order
这里是错误
point_of_sale.assets.js:79 Cannot read property 'name' of undefined TypeError: Cannot read property 'name' of undefined
at Engine.eval (eval at _render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3416:73), <anonymous>:50:34)
at Engine._render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3415:296)
at Engine.render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3415:151)
at Engine._render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3419:57)
at Engine.render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3415:151)
at Class.render_orderline (http://localhost:8071/web/content/723-a89f195/point_of_sale.assets.js:306:5014)
at Class.renderElement (http://localhost:8071/web/content/723-a89f195/point_of_sale.assets.js:308:354)
at Class.replace (http://localhost:8071/web/content/723-a89f195/point_of_sale.assets.js:307:423)
at Class.start (http://localhost:8071/web/content/723-a89f195/point_of_sale.assets.js:325:810)
at http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3684:52
不需要var self = this;
,因为以后不用。
此外,您很可能需要 return 初始化函数中的某些内容。
_super_order.initialize.apply(this,arguments);
应该是:
return _super_order.initialize.apply(this,arguments);
我想在初始化函数中添加变量,但我不知道如何正确地做
这是我现在尝试过的方法
odoo.define('tw_pos_inherit_model.attemptInherit', function (require) {
"use strict";
var POSInheritmodel = require('point_of_sale.models');
var _super_order = POSInheritmodel.Order.prototype;
POSInheritmodel.Order = POSInheritmodel.Order.extend({
initialize: function(session,attributes){
var self = this;
this.additional_discount = 0;
_super_order.initialize.apply(this,arguments);
},
我试过按照所说的去做 here 但这个例子是针对 PosModel 而不是 Order
这里是错误
point_of_sale.assets.js:79 Cannot read property 'name' of undefined TypeError: Cannot read property 'name' of undefined
at Engine.eval (eval at _render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3416:73), <anonymous>:50:34)
at Engine._render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3415:296)
at Engine.render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3415:151)
at Engine._render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3419:57)
at Engine.render (http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3415:151)
at Class.render_orderline (http://localhost:8071/web/content/723-a89f195/point_of_sale.assets.js:306:5014)
at Class.renderElement (http://localhost:8071/web/content/723-a89f195/point_of_sale.assets.js:308:354)
at Class.replace (http://localhost:8071/web/content/723-a89f195/point_of_sale.assets.js:307:423)
at Class.start (http://localhost:8071/web/content/723-a89f195/point_of_sale.assets.js:325:810)
at http://localhost:8071/web/content/319-5a1ade2/web.assets_common.js:3684:52
不需要var self = this;
,因为以后不用。
此外,您很可能需要 return 初始化函数中的某些内容。
_super_order.initialize.apply(this,arguments);
应该是:
return _super_order.initialize.apply(this,arguments);