mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-20 06:32:07 +02:00
55 lines
2 KiB
XML
55 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
|
|
<record id="product_normal_form_view_inherit" model="ir.ui.view">
|
|
<field name="name">product.product.form.inherit</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_normal_form_view" />
|
|
<field name="arch" type="xml">
|
|
<xpath
|
|
expr="//div[@name='button_box']/button[@name='action_view_mrp_area_parameters']"
|
|
position="after"
|
|
>
|
|
<button
|
|
type="object"
|
|
name="action_view_stock_buffers"
|
|
class="oe_stat_button"
|
|
icon="fa-flask"
|
|
attrs="{'invisible': [('buffer_count', '=', 0)]}"
|
|
>
|
|
<field
|
|
name="buffer_count"
|
|
widget="statinfo"
|
|
string="Stock Buffers"
|
|
/>
|
|
</button>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="product_template_only_form_view_inherit" model="ir.ui.view">
|
|
<field name="name">product.template.product.form.inherit</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']/button[@name='action_view_mrp_area_parameters']"
|
|
position="after"
|
|
>
|
|
<button
|
|
type="object"
|
|
name="action_view_stock_buffers"
|
|
class="oe_stat_button"
|
|
icon="fa-flask"
|
|
attrs="{'invisible': [('buffer_count', '=', 0)]}"
|
|
>
|
|
<field
|
|
name="buffer_count"
|
|
widget="statinfo"
|
|
string="Stock Buffers"
|
|
/>
|
|
</button>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|