odoo:不可能在one2many上使一条线不可见吗?

时间:2019-06-18 09:55:11

标签: odoo invisible one2many

我正在根据字段filtre_project(在stock.picking中)使某些行(one2many stock.move)不可见。
我尝试将domain用作:

<field name="move_lines" position="attributes">
    <attribute name="domain">[('project_id','in',filtre_project and filtre_project[0] and filtre_project[0][2])]
</attribute>

1 个答案:

答案 0 :(得分:0)

您不能在树/列表视图中有条件地隐藏字段,可以隐藏,但对于所有无条件的数据都应固定该字段。

我不确定,但是您可以通过在上下文中使用不可见来实现此目的。

示例:

<field name="department_id" invisible="context.get('invisible_department', True)"/>