mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
23 lines
879 B
XML
23 lines
879 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record model="ir.ui.view" id="view_mrp_product_product_form">
|
|
<field name="name">view.product.mrp.area.product.form</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_normal_form_view" />
|
|
<field name="type">form</field>
|
|
<field name="arch" type="xml">
|
|
<div name="button_box" position="inside">
|
|
<button
|
|
type="object"
|
|
name="action_view_mrp_area_parameters"
|
|
class="oe_stat_button"
|
|
icon="fa-eject"
|
|
groups="mrp.group_mrp_user"
|
|
>
|
|
<field name="mrp_area_count" widget="statinfo" string="MRP Areas" />
|
|
</button>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|