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

23 lines
786 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="mrp_bom_see_attachments_form_view" model="ir.ui.view">
<field name="name">mrp.bom.attachments.mrp.bom.form.view</field>
<field name="model">mrp.bom</field>
<field name="inherit_id" ref="mrp.mrp_bom_form_view" />
<field name="arch" type="xml">
<xpath
expr="//button[@name='%(mrp.action_report_mrp_bom)d']"
position="after"
>
<button
class="oe_stat_button"
name="action_see_bom_documents"
type="object"
icon="fa-files-o"
string="Attachments"
/>
</xpath>
</field>
</record>
</odoo>