You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.1 KiB
22 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inheriting mrp bom for adding new fields for bom total cost-->
|
|
<record id="mrp_bom_form_view" model="ir.ui.view">
|
|
<field name="name">mrp.bom.view.form.inherit.bom.total.cost</field>
|
|
<field name="model">mrp.bom</field>
|
|
<field name="inherit_id" ref="mrp.mrp_bom_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@class='o_row']" position="after">
|
|
<field name="currency_id" invisible="1"/>
|
|
<field name="bom_cost" widget="monetary"
|
|
options="{'currency_field': 'currency_id'}"/>
|
|
<field name="total_bom_cost" widget="monetary"
|
|
options="{'currency_field': 'currency_id'}"/>
|
|
</xpath>
|
|
<xpath expr="//field[@name='bom_line_ids']/list/field[@name='product_id']"
|
|
position="after">
|
|
<field name="cost" invisible="1"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|