Files
test/mrp_mps/views/product_template_views.xml
qihao.gong@jikimo.com 1533ef7be9 新增主生产计划模块
2023-08-15 10:36:04 +08:00

17 lines
841 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="product_template_only_form_view_mps" model="ir.ui.view">
<field name="name">product.template.view.form.inherit.mrp.mps</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="//div[@name='button_box']" position="inside">
<button class="oe_stat_button" name="action_open_mps_view" type="object"
groups="mrp.group_mrp_manager"
icon="fa-area-chart" attrs="{'invisible':[('schedule_count', '=',0)]}">
<field string="Schedules" name="schedule_count" widget="statinfo" />
</button>
</xpath>
</field>
</record>
</odoo>