diff options
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> |
