有可能涉及相关领域吗? 我做到了 第一个对象
_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 !!
答案 0 :(得分:1)
尝试
_columns={
'sale_price_unit': fields.related('procurement_id','sale_line_id','price_unit',string='Prix de vente',type='float', store=True, readonly=True),
}