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/account_report_common_view.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/account/wizard/account_report_common_view.xml')
| -rw-r--r-- | addons/account/wizard/account_report_common_view.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/addons/account/wizard/account_report_common_view.xml b/addons/account/wizard/account_report_common_view.xml new file mode 100644 index 00000000..6333f125 --- /dev/null +++ b/addons/account/wizard/account_report_common_view.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + + <record id="account_common_report_view" model="ir.ui.view"> + <field name="name">Common Report</field> + <field name="model">account.common.report</field> + <field name="arch" type="xml"> + <form string="Report Options"> + <group col="4"> + <field name="target_move" widget="radio"/> + <field name="date_from"/> + <field name="date_to"/> + </group> + <group> + <field name="journal_ids" widget="many2many_tags" options="{'no_create': True}"/> + <field name="company_id" options="{'no_create': True}" groups="base.group_multi_company"/> + </group> + <footer> + <button name="check_report" string="Print" type="object" default_focus="1" class="oe_highlight"/> + <button string="Cancel" class="btn btn-secondary" special="cancel" /> + </footer> + </form> + </field> + </record> + +</odoo> |
