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.

36 lines
1.5 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <odoo>
  3. <act_window id="action_account_bank_statement_line_reconciliation_wizard"
  4. name="Bank reconcile report change"
  5. src_model="account.move"
  6. res_model="account.bank.statement.line.reconciliation.wizard"
  7. view_mode="form"
  8. target="new"
  9. key2="client_action_multi"
  10. groups="base.group_system"/>
  11. <record id="account_bank_statement_line_reconciliation_wizard" model="ir.ui.view">
  12. <field name="name">Bank reconcile report change</field>
  13. <field name="model">account.bank.statement.line.reconciliation.wizard</field>
  14. <field name="arch" type="xml">
  15. <form string="Bank reconcile report change">
  16. <sheet>
  17. <group>
  18. <field name="statement_line_ids">
  19. <tree>
  20. <field name="name" string="Entry"/>
  21. </tree>
  22. </field>
  23. <field name="new_statement_line_id" options="{'no_create': True, 'no_create_edit': True}"/>
  24. </group>
  25. </sheet>
  26. <footer>
  27. <button string="Set value" name="set_new_statement_line_value" type="object" class="btn-primary"/>
  28. <button string="Cancel" class="btn-default" special="cancel" />
  29. </footer>
  30. </form>
  31. </field>
  32. </record>
  33. </odoo>