Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用odoo编写一个模块。我已经定义了一些父产品和它们的子产品。我想做的是,当我从 many2one 字段中选择父产品时,该父产品的子产品将自动在 Treeview 行中打开。此树视图字段定义为 one2many 字段。
我使用了onchange_parent_product函数,还根据parent_product_id添加了过滤器。
但是当我选择父产品时,树视图没有显示..
请帮助我如何自动填充树视图行?
要使用 one2many 字段,您需要将产品中的 many2one 字段用于您创建的这个新模型。为了方便使用 many2many 字段,最好使用 onchange 来填充它。
只需搜索 parent_id 等于所选产品的产品,然后将此记录添加到您的 many2many 字段。
如果您需要使用 o2m 字段来保留它,最好添加更多代码以查看您做了什么,以及您在产品中添加到新模型的 many2one 字段是什么。