Files
app-odoo/app_product_superbar/views/product_template_views.xml
2022-04-01 16:48:49 +08:00

18 lines
660 B
XML

<odoo>
<data>
<!-- Product -->
<record id="app_product_template_search_view" model="ir.ui.view">
<field name="name">app.product.template.search</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_search_view"/>
<field name="arch" type="xml">
<xpath expr="//search">
<searchpanel view_types="tree,kanban,search">
<field name="categ_id" widget="ztree_select" text="name"/>
<field name="type"/>
</searchpanel>
</xpath>
</field>
</record>
</data>
</odoo>