flectra/addons/account/wizard/wizard_tax_adjustments_view.xml
2018-01-16 02:34:37 -08:00

36 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<flectra>
<record id="tax_adjustments_wizard" model="ir.ui.view">
<field name="name">tax.adjustments.wizard.form</field>
<field name="model">tax.adjustments.wizard</field>
<field name="arch" type="xml">
<form>
<h1>
<field name="reason" class="oe_inline" placeholder="Reason..."/>
</h1>
<group>
<group>
<field name="amount"/>
</group>
<group>
<field name="tax_id" widget="selection"/>
</group>
<group string="Accounts">
<field name="debit_account_id"/>
<field name="credit_account_id"/>
</group>
<group string="Options">
<field name="journal_id"/>
<field name="date"/>
</group>
</group>
<footer>
<button name="create_move" string="Create and post move" type="object" default_focus="1" class="oe_highlight"/>
<button string="Cancel" class="btn btn-default" special="cancel" />
</footer>
</form>
</field>
</record>
</flectra>