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.

29 lines
1.3 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="create_txt_map_lines_view" model="ir.ui.view">
  4. <field name="name">Create Statement Map Lines</field>
  5. <field name="model">wizard.txt.map.create</field>
  6. <field name="arch" type="xml">
  7. <form string="Import Txt Map Lines">
  8. <h2>Select a TXT/CSV or XLSX bank statement file to create all the map lines from headers file.</h2>
  9. <p>Download a bank statement from your bank and import it here.</p>
  10. <p>All the txt map lines will be created automatically.</p>
  11. <field name="data_file" filename="filename" placeholder="Choose a file to import..."/>
  12. <field name="filename" invisible="1"/>
  13. <footer>
  14. <button name="create_map_lines" string="Create Lines" type="object" class="btn-primary" />
  15. <button string="Cancel" class="btn-default" special="cancel"/>
  16. </footer>
  17. </form>
  18. </field>
  19. </record>
  20. <act_window name="Create Statement Map Lines"
  21. res_model="wizard.txt.map.create"
  22. src_model="account.bank.statement.import.map"
  23. view_mode="form"
  24. target="new"
  25. key2="client_action_multi"
  26. id="action_create_txt_map_lines"/>
  27. </odoo>