blob: 6ef4b32107e42995e3bf05dbf2871f10f1bd9910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="mrp_subcontracting_product_template_search_view" model="ir.ui.view">
<field name="name">mrp.subcontracting.product.template.search</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_search_view" />
<field name="groups_id" eval="[(4, ref('mrp.group_mrp_user'))]"/>
<field name="arch" type="xml">
<xpath expr="//filter[@name='filter_to_purchase']" position="after">
<filter string="Can be Subcontracted" name="filter_can_be_subcontracted" domain="[('bom_ids.type', '=', 'subcontract')]" />
</xpath>
</field>
</record>
</data>
</odoo>
|