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.

30 lines
1.1 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record id="account_bank_reconcile_form_view" model="ir.ui.view">
  5. <field name="name">wiz.bank.unreconcile.form</field>
  6. <field name="model">wiz.bank.unreconcile</field>
  7. <field name="arch" type="xml">
  8. <form string="Import">
  9. <field name="line_ids"
  10. context="{'currency':True}"/>
  11. <footer>
  12. <button name="process_wiz" string="Import" type="object" class="oe_highlight"/>
  13. or
  14. <button string="Cancel" class="oe_link" special="cancel"/>
  15. </footer>
  16. </form>
  17. </field>
  18. </record>
  19. <act_window name="Unreconcile Journal Items"
  20. res_model="wiz.bank.unreconcile"
  21. src_model="account.bank.statement"
  22. view_mode="form"
  23. view_type="form"
  24. target="new"
  25. id="bank_statement_reconcile_action"/>
  26. </data>
  27. </openerp>