flectra/addons/account_discount/views/account_invoice_views.xml
2018-01-17 12:10:36 +05:30

38 lines
2.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<flectra>
<!-- Account -->
<record model="ir.ui.view" id="inherit_account_invoice_form">
<field name="name">account.invoice.inherit.form</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_form"/>
<field name="priority" eval="20"/>
<field name="arch" type="xml">
<xpath expr="/form/sheet/notebook/page/group" position="replace">
</xpath>
<field name='comment' position="before">
<div>
<group>
<group class="pull-left">
<field name="discount_method" attrs="{'readonly': ['|', ('origin', '!=', False), ('state', '!=', 'draft')]}"/>
<field name="discount_amount" attrs="{'readonly': ['|', '|', ('origin', '!=', False), ('state', '!=', 'draft'), ('discount_method', '=', False)], 'invisible': [('discount_method', '=', 'per')]}"/>
<field name="discount_per" attrs="{'invisible': ['|', ('discount_method', '=', 'fixed'), ('discount_method', '=', False)], 'readonly': ['|', ('origin', '!=', False), ('state', '!=', 'draft')]}"/>
<button name="calculate_discount" type="object" class="oe_edit_only oe_link" string="(Update Discount)" attrs="{'invisible': [('discount_method', '=', False)]}" confirm="If you want to apply global discount other discount methods will be reset."/>
</group>
<group class="oe_subtotal_footer oe_right">
<field name="gross_amount" widget="monetary" options="{'currency_field': 'currency_id'}"/>
<field name="discount" string="Discount"/>
<field name="amount_untaxed" string="Subtotal"/>
<field name="amount_tax"/>
<field name="amount_total" class="oe_subtotal_footer_separator"/>
<field name="payments_widget" colspan="2" nolabel="1" widget="payment"/>
<field name="residual" class="oe_subtotal_footer_separator" attrs="{'invisible': [('state', '=', 'draft')]}"/>
<field name="reconciled" invisible="1"/>
<field name="outstanding_credits_debits_widget" colspan="2" nolabel="1" widget="payment" attrs="{'invisible': [('state', 'not in', 'open')]}"/>
</group>
</group>
</div>
</field>
</field>
</record>
</flectra>