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.

23 lines
957 B

  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="view_bank_statement_form" model="ir.ui.view">
  9. <field name="name">bank_rec_summary.account.bank.statement.form</field>
  10. <field name="model">account.bank.statement</field>
  11. <field name="inherit_id" ref="account.view_bank_statement_form" />
  12. <field name="arch" type="xml">
  13. <button name="check_confirm_bank" position="after">
  14. <button
  15. name="%(bank_reconciliation_report_wizard_action)d"
  16. type="action"
  17. string="Bank Reconciliation Report"
  18. context="{'default_journal_ids': [journal_id]}"
  19. />
  20. </button>
  21. </field>
  22. </record>
  23. </odoo>