如何在 Odoo 12 中访问 pos 订单行的税务信息
How to access tax information for pos order lines in Odoo 12
我正在使用 Odoo 12 销售点,需要访问每个 pos 订单行中包含的每项税费,并根据税费配置(税名、税额和我添加的一些自定义字段)制定一些逻辑。
例如:
var OrderlineSuper = pos_model.Orderline;
pos_model.Orderline = pos_model.Orderline.extend({
export_as_JSON: function(){
var data = OrderlineSuper.prototype.export_as_JSON.apply(this, arguments);
data.test_field = this.product.display_name;
//Here I need to browse through every tax included on pos order line (access taxes fields) and make some logic
console.log('DATA:', data);
return data;
},
});
有人能帮帮我吗?
可以使用订单行get_taxes的方法。
this.get_taxes().forEach(function (tax) {
});
我正在使用 Odoo 12 销售点,需要访问每个 pos 订单行中包含的每项税费,并根据税费配置(税名、税额和我添加的一些自定义字段)制定一些逻辑。
例如:
var OrderlineSuper = pos_model.Orderline;
pos_model.Orderline = pos_model.Orderline.extend({
export_as_JSON: function(){
var data = OrderlineSuper.prototype.export_as_JSON.apply(this, arguments);
data.test_field = this.product.display_name;
//Here I need to browse through every tax included on pos order line (access taxes fields) and make some logic
console.log('DATA:', data);
return data;
},
});
有人能帮帮我吗?
可以使用订单行get_taxes的方法。
this.get_taxes().forEach(function (tax) {
});