17 lines
728 B
XML
17 lines
728 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="mrp_routing_workcenter_form_view_inherit_shared" model="ir.ui.view">
|
|
<field name="name">mrp.routing.workcenter.form.inherit.shared</field>
|
|
<field name="model">mrp.routing.workcenter</field>
|
|
<field name="inherit_id" ref="mrp.mrp_routing_workcenter_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='bom_id']" position="attributes">
|
|
<attribute name="required">0</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='bom_id']" position="after">
|
|
<field name="bom_ids" widget="many2many_tags"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|