Odoo - 我们如何显示多级记录
Odoo - How can we show multi level records
我想在 odoo 中显示多级记录。就像我们有
这样的关系
1-customer have many products and each product have a category
我可以很容易地在 odoo 中针对客户展示产品,但是如果我想在我站在客户页面时展示 products.category 怎么办。
customer fields ......
<field name="product.category" />
我可以这样做吗?
如果您想在 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>
我想在 odoo 中显示多级记录。就像我们有
这样的关系1-customer have many products and each product have a category
我可以很容易地在 odoo 中针对客户展示产品,但是如果我想在我站在客户页面时展示 products.category 怎么办。
customer fields ......
<field name="product.category" />
我可以这样做吗?
如果您想在 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>