Files
app-odoo/app_mrp_superbar/views/mrp_production_views.xml
2020-11-16 16:37:05 +08:00

21 lines
899 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!--搜索加 superbar-->
<record model="ir.ui.view" id="app_view_mrp_production_filter">
<field name="name">app.mrp.production.select</field>
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp.view_mrp_production_filter"/>
<field name="arch" type="xml">
<xpath expr="//search" position="inside">
<searchpanel view_types="tree,kanban,pivot,graph">
<field name="priority"/>
<field name="reservation_state"/>
<field name="state"/>
<field name="routing_id" groups="mrp.group_mrp_routings"/>
<field name="company_id" groups="base.group_multi_company" icon="fa-building"/>
</searchpanel>
</xpath>
</field>
</record>
</odoo>