Files
manufacture/mrp_attachment_mgmt/views/product_views.xml
Víctor Martínez 56c7e36cbc [ADD] mrp_attachment_mgmt: New addon.
TT33396
2022-03-08 17:14:49 +01:00

38 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="mrp_bom_see_attachments_product_template_form_view" model="ir.ui.view">
<field name="name">mrp.bom.attachments.product.template.form.view</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="///button[@name='action_used_in_bom']" position="after">
<button
class="oe_stat_button"
name="action_see_bom_documents"
type="object"
icon="fa-files-o"
string="Bom Attachments"
attrs="{'invisible': [('bom_count','!=',1)]}"
/>
</xpath>
</field>
</record>
<record id="mrp_bom_see_attachments_product_product_form_view" model="ir.ui.view">
<field name="name">mrp.bom.attachments.product.product.form.view</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_normal_form_view" />
<field name="arch" type="xml">
<xpath expr="///button[@name='action_used_in_bom']" position="after">
<button
class="oe_stat_button"
name="action_see_bom_documents"
type="object"
icon="fa-files-o"
string="Bom Attachments"
attrs="{'invisible': [('bom_count','!=',1)]}"
/>
</xpath>
</field>
</record>
</odoo>