diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/account/wizard/wizard_tax_adjustments_view.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/account/wizard/wizard_tax_adjustments_view.xml')
| -rw-r--r-- | addons/account/wizard/wizard_tax_adjustments_view.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/addons/account/wizard/wizard_tax_adjustments_view.xml b/addons/account/wizard/wizard_tax_adjustments_view.xml new file mode 100644 index 00000000..39e98e27 --- /dev/null +++ b/addons/account/wizard/wizard_tax_adjustments_view.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + + <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> + <field name="report_id" invisible="1"/> + <field name="tax_report_line_id" widget="selection" domain="[('tag_name', '!=', None)]"/> + </group> + <group> + <group> + <field name="amount"/> + </group> + <group> + <field name="adjustment_type"/> + </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-secondary" special="cancel" /> + </footer> + </form> + </field> + </record> +</odoo> |
