如何计算销售订单行中的两个自定义字段?

时间:2018-01-15 15:13:08

标签: python python-3.x python-2.7 odoo-10 odoo

我在销售订单行(高度和宽度)和一个名为总面积的字段中添加了两个新服装字段。我想计算总面积字段中的两个字段(高度和宽度)

由于

1 个答案:

答案 0 :(得分:2)

sale_order_line classe

中试试
@api.depends('height', 'width')
def _get_area(self):
    for line in self:
        line.area = line.height * line.width 


height = fields.Integer(string='Height')
width = fields.Integer(string='Width')
area = fields.Integer(compute='_get_area', string='Area article', readonly=True, store=True)