我想在销售订单上添加一个新字段以供客户产品参考。
因此,我在one2many
中创建了一个与自定义模型customer_product_reference_ids
相关的product.product
字段(customer_product_reference
)。
customer_product_reference
中的字段是:name
; product_id
,与many2one
相关的product.product
字段;和customer_id
,与many2one
res.partner
字段
现在,我为sale.order.line
创建了一个新字段,以便基于销售订单的客户以及添加到销售订单行的产品来获取客户产品参考。
此字段是many2one
字段customer_reference_id
。我试图使用上下文来获取客户产品参考,但是它不起作用。
这里是上下文:{'customer_id': order_partner_id,'product_id': product_id}
。
customer_reference_id
保持空白。上下文有什么问题?