我想在销售订单上添加一个新字段,以供客户参考产品。
我是odoo的新手,并在SaaS上使用工作室/开发人员模式。
这是我所做的:
创建自定义模型x_customer_product_reference
(字段:x_product_id
和x_customer_id
)。
在模型product.product
中创建与自定义模型相关的one2many
字段x_customer_product_reference_ids
。
在sale.order.line
中创建与product_id.x_customer_product_reference_ids.x_name
相关的字段。
XML表单视图中的上下文:{'default_x_customer_id':order_partner_id}
但是该字段仅不将与数据相关的传递给销售订单客户,而只是传递x_customer_product_reference_ids
中表中的第一个product.product
。
我的上下文可能有什么问题?