You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
691 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Inheriting mrp bom Form view to add Button for selecting products-->
<record id="mrp_bom_form_view" model="ir.ui.view">
<field name="name">mrp.bom.view.form.inherit.bom.multiple.product
</field>
<field name="model">mrp.bom</field>
<field name="inherit_id" ref="mrp.mrp_bom_form_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='bom_line_ids']" position="before">
<button name="action_select_products" string="Select Products"
class="oe_highlight" type="object"/>
</xpath>
</field>
</record>
</odoo>