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.

32 lines
1.2 KiB

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. Copyright 2019 Brainbean Apps (https://brainbeanapps.com)
  4. Copyright 2019 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. <group name="filter">
  14. <group name="date_range" colspan="2">
  15. <group>
  16. <field name="date_since"/>
  17. </group>
  18. <group>
  19. <field name="date_until"/>
  20. </group>
  21. </group>
  22. </group>
  23. <footer>
  24. <button name="action_pull" string="Pull" type="object" default_focus="1" class="oe_highlight"/>
  25. <button string="Cancel" class="oe_link" special="cancel" />
  26. </footer>
  27. </form>
  28. </field>
  29. </record>
  30. </odoo>