我想在odoo中显示多级记录。就像我们有像
这样的关系1-customer have many products and each product have a category
我可以在odoo中轻松地向客户展示产品,但如果我想在客户页面中显示products.category,该怎么办。
customer fields ......
<field name="product.category" />
我可以这样做吗?
答案 0 :(得分:0)
如果要在Many2many树视图中显示产品类别,可以尝试以下方法:
<field name='arch' type='xml>
<form string='Customer'>
<field name='product_ids'>
<!-- Tree view shown in the form -->
<tree name='Product Tree View'>
<field name='name'/>
<field name='category_id'/>
</tree>
</field>
</form>
</field>