Files
manufacture/mrp_attachment_mgmt/views/product_views.xml
2023-05-11 09:19:29 +02: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="mrp.product_template_form_view_bom_button" />
<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="mrp.product_product_form_view_bom_button" />
<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>