You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.7 KiB

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!--
  3. Copyright 2017-2020 Akretion France (http://www.akretion.com/)
  4. @author: Alexis de Lattre <alexis.delattre@akretion.com>
  5. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  6. -->
  7. <odoo>
  8. <record id="bank_reconciliation_report_wizard_form" model="ir.ui.view">
  9. <field name="name">bank.reconciliation.report.wizard.form</field>
  10. <field name="model">bank.reconciliation.report.wizard</field>
  11. <field name="arch" type="xml">
  12. <form string="Bank Reconciliation Report">
  13. <group name="main">
  14. <field name="date" />
  15. <field name="journal_ids" widget="many2many_tags" />
  16. </group>
  17. <footer>
  18. <button
  19. name="open_xlsx"
  20. string="Export XLSX"
  21. type="object"
  22. class="btn-primary"
  23. />
  24. <button special="cancel" string="Cancel" />
  25. </footer>
  26. </form>
  27. </field>
  28. </record>
  29. <record id="bank_reconciliation_report_wizard_action" model="ir.actions.act_window">
  30. <field name="name">Bank Reconciliation</field>
  31. <field name="res_model">bank.reconciliation.report.wizard</field>
  32. <field name="view_mode">form</field>
  33. <field name="target">new</field>
  34. </record>
  35. <menuitem
  36. id="bank_reconciliation_report_wizard_menu"
  37. action="bank_reconciliation_report_wizard_action"
  38. parent="account_financial_report.menu_oca_reports"
  39. groups="account.group_account_manager,account.group_account_user"
  40. sequence="100"
  41. />
  42. </odoo>