如何在odoo-10树形视图中应用过滤器?

时间:2019-03-08 10:40:33

标签: odoo odoo-10 odoo-view

在odoo-10中,我有一个树状视图,其中有近3000条记录。但是,我只想在树视图中显示值为 prod_def = 3 的记录。

图像中的最后一列,为“ prod_def”。

Here is the image of my tree view.

我尝试了以下方式,但没有成功:

    <record model="ir.ui.view" id="product_multi_customer_names_tree">
        <field name="name">product.multi.customer.names.tree</field>
        <field name="model">product.multi.customer.names</field>
        <field name="type">tree</field>
        <field name="domain">[('prod_def','=',3)]</field>
        <field name="arch" type="xml">
            <tree>
                <field name="name"/>
                <field name="label" />
                <field name="def_additional_val"/>
                <field name="prod_def" />
            </tree>
        </field>
    </record>

我在哪里弄得一团糟。帮助表示赞赏。预先感谢!

0 个答案:

没有答案