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.
25 lines
1.0 KiB
25 lines
1.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
|
|
<record id="discount_account_invoice_view_form" model="ir.ui.view">
|
|
<field name="name">discount.account.invoice</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='discount']" position="attributes">
|
|
<attribute name="digits">[16, 2]</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='tax_totals']" position="after">
|
|
<field name="amount_discount" readonly="1" force_save="1"/>
|
|
</xpath>
|
|
<xpath expr="//field[@name='narration']" position="before">
|
|
<group>
|
|
<field name="discount_type" width="50px"/>
|
|
<field name="discount_rate" class="oe_inline"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|
|
|