mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
47 lines
2.2 KiB
XML
47 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="product_template_form_view" model="ir.ui.view">
|
|
<field name="name">product.template.form.view.estimatedcost</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<field name="standard_price" position="after">
|
|
<field name="manual_standard_cost" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="product_product_form_view_bom_button_inh_estimatedcost" model="ir.ui.view">
|
|
<field name="name">product.product.form.view.bom.button.inh.estimatedcost</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="mrp.product_product_form_view_bom_button"/>
|
|
<field name="arch" type="xml">
|
|
<button name="action_view_bom" position="after">
|
|
<button class="oe_inline oe_stat_button"
|
|
name="%(act_product_create_virtual_mo)d"
|
|
string="Create Virtual MO" type="action"
|
|
attrs="{'invisible':[('type', '=', 'service')]}" icon="fa-flask"
|
|
/>
|
|
</button>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="product_template_form_view_bom_button_inh_estimatedcost" model="ir.ui.view">
|
|
<field name="name">product.template.form.view.bom.button.inh.estimatedcost</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="mrp.product_template_form_view_bom_button"/>
|
|
<field name="arch" type="xml">
|
|
<button name="action_view_mos" position="before">
|
|
<button class="oe_inline oe_stat_button"
|
|
name="%(act_product_create_virtual_mo)d"
|
|
attrs="{'invisible':[('type', '=', 'service')]}" icon="fa-flask"
|
|
string="Create Virtual MO" type="action"
|
|
/>
|
|
</button>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|