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.
 
 
 
 
 

44 lines
1.9 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="bom_button_veiw" model="ir.ui.view">
<field name="name">bom.button</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_only_form_view"/>
<field name="arch" type="xml">
<xpath expr="//div" position="inside">
<div class="oe_right oe_button_box">
<button class="oe_stat_button"
icon="fa-gears"
name="%(mrp.mrp_bom_form_action)d"
type="action"
context="{'search_default_bom_line_ids': name}">
<field string="Used In BoM" name="used_bom_count" widget="statinfo"/>
</button>
</div>
</xpath>
</field>
</record>
<record id="mrp_bom_image_form_view" model="ir.ui.view">
<field name="name">mrp.bom.image.form</field>
<field name="model">mrp.bom</field>
<field name="inherit_id" ref="mrp.mrp_bom_form_view"/>
<field name="arch" type="xml">
<xpath expr="//tree/field[@name='product_id']" position="after">
<field name="image" widget="image" class="oe_avatar" />
</xpath>
</field></record>
<record id="mo_line_bom_image_form_view" model="ir.ui.view">
<field name="name">mo_line.bom.image.form</field>
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp.mrp_production_form_view"/>
<field name="arch" type="xml">
<xpath expr="//tree/field[@name='product_id']" position="before">
<field name="image" widget="image" class="oe_avatar" />
</xpath>
</field></record>
</data>
</odoo>