Files
manufacture/mrp_attachment_mgmt/views/mrp_production_views.xml

31 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="mrp_production_form_view" model="ir.ui.view">
<field name="name">mrp.production.form - Add attachments smart-button</field>
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp.mrp_production_form_view" />
<field name="arch" type="xml">
<xpath expr="///button[@name='action_see_move_scrap']" position="after">
<button
class="oe_stat_button"
name="action_show_attachments"
type="object"
icon="fa-files-o"
string="Attachments"
/>
</xpath>
</field>
</record>
<record id="action_show_production_attachments" model="ir.actions.server">
<field name="name">Attachments</field>
<field name="model_id" ref="mrp.model_mrp_production" />
<field name="binding_model_id" ref="mrp.model_mrp_production" />
<field name="binding_view_types">list</field>
<field name="state">code</field>
<field name="code">
if records:
action = records.action_show_attachments()
</field>
</record>
</odoo>