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.
 
 
 
 
 

28 lines
1.2 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_invoice_form_inherit" model="ir.ui.view">
<field name="name">account.move.inherit</field>
<field name="model">account.move</field>
<field name="inherit_id" ref="account.view_move_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='invoice_line_ids']/tree//field[@name='price_unit']"
position="after">
<field name="cost_price_amount"/>
</xpath>
<xpath expr="//field[@name='invoice_line_ids']/tree//field[@name='price_unit']"
position="before">
<field name="margin_amount"/>
</xpath>
<xpath expr="//group[hasclass('oe_invoice_lines_tab')]"
position="before">
<group>
<field name="margin_amount_total"
style="width:250px" readonly="1" widget='monetary'
options="{'currency_field': 'currency_id'}"/>
<field name="margin_percent_amount" style="width:250px"
readonly="1"/>
</group>
</xpath>
</field>
</record>
</odoo>