有可能涉及相关领域吗?

there is possible to related a related field?

有可能关联相关领域吗? 我做了 第一个对象

_columns = {
        'sale_price_unit': fields.related('sale_line_id','price_unit',string='Prix de vente',type='float', store=True, readonly=True),
        } 

另一个对象

_columns={
        'sale_price_unit': fields.related('procurement_id','sale_price_unit',string='Prix de vente',type='float', store=True, readonly=True),

        }

第二个对象的值总是等于0.0 !!

尝试

_columns={
        'sale_price_unit': fields.related('procurement_id','sale_line_id','price_unit',string='Prix de vente',type='float', store=True, readonly=True),

        }