Files
app-odoo/app_website_product_superbar/views/product_views.xml
2020-05-27 23:34:55 +08:00

15 lines
588 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="app_product_superbar.app_product_template_search_view"/>
<field name="arch" type="xml">
<xpath expr="//searchpanel//field[@name='categ_id']" position="before">
<field name="public_categ_ids" select="multi" text="name"/>
</xpath>
</field>
</record>
</data>
</odoo>