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.

33 lines
1.3 KiB

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. Copyright 2019-2020 Brainbean Apps (https://brainbeanapps.com)
  4. Copyright 2019-2020 Dataplug (https://dataplug.io)
  5. License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
  6. -->
  7. <odoo>
  8. <record id="online_bank_statement_pull_wizard_form" model="ir.ui.view">
  9. <field name="name">online.bank.statement.pull.wizard.form</field>
  10. <field name="model">online.bank.statement.pull.wizard</field>
  11. <field name="arch" type="xml">
  12. <form>
  13. <field name="provider_ids" invisible="1"/>
  14. <group name="filter">
  15. <group name="date_range" colspan="2">
  16. <group>
  17. <field name="date_since"/>
  18. </group>
  19. <group>
  20. <field name="date_until"/>
  21. </group>
  22. </group>
  23. </group>
  24. <footer>
  25. <button name="action_pull" string="Pull" type="object" default_focus="1" class="oe_highlight"/>
  26. <button string="Cancel" class="oe_link" special="cancel" />
  27. </footer>
  28. </form>
  29. </field>
  30. </record>
  31. </odoo>