添加 product.product 字段到 product.template 视图 - Odoo v8

Add product.product fields to product.template view - Odoo v8

我正在尝试将新的 product.product 字段添加到默认 product.template 视图,问题是,我已经尝试了很多示例,但 none 似乎在工作。

问题是我确实已将这些字段添加到 product.product 默认视图(作为继承视图)但是,该视图仅适用于销售模块,Odoo 的绝大多数产品视图来自 product.template

有人知道如何在 xml 视图上实现这一点吗?

有可能吗?成为 product.product 模特?

您应该将这些字段添加到 product.template 模型,然后它们将通过继承自动添加到 product.product。这样您就可以在 product.template 视图中显示字段。

我不知道您要解决的确切问题是什么,但是当您需要向产品添加字段时,您应该考虑它的值是否会因产品的每个变体而不同(product.product 是变体,product.template 是原始产品)。如果它将具有相同的值(您想将它添加到 product.template 视图,所以我想它会拥有它)然后,将它添加到 product.template 模型。

希望对你有所帮助