如何在树状视图中隐藏行?

时间:2018-07-24 10:40:48

标签: xml odoo odoo-10

我想根据条件隐藏一行。树视图是一个很多字段。如果使用od_state = cancel,则该行应该是不可见的 代码:

<field name="line_id">
<tree editable='bottom' >
      <field name="name" attrs="{'invisible':[('state','=','cancel')]}"/>
      <field name="date" attrs="{'invisible':[('state','=','cancel')]}"/>
      <field name="state" invisible="1"/>
</tree>
</field>

上面的代码将数据隐藏在行(行)中,但该行仍然可见。

输出:

enter image description here

0 个答案:

没有答案