我知道如何按树视图对我的动作进行分组,但是当树形视图位于表单视图中时,我不知道并且无法找到任何示例或说明。是否有可能这样做?
答案 0 :(得分:0)
在form_view中,如果你有任何one2many字段,你可以在form_view中使用tree_view。
<group>
<field name="name"/>
<field name="responsible_id"/>
</group>
<notebook>
<page string="Description">
<field name="description"/>
</page>
<page string="Sessions">
<field name="session_ids">
<tree>
<field name="name"/>
<field name="instructor_id"/>
</tree>
</field>
</page>
</notebook>
这里,session_ids是one2many字段。