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.

19 lines
741 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="view_bank_statement_form" model="ir.ui.view">
  4. <field name="name">account.bank.statement.form.population</field>
  5. <field name="model">account.bank.statement</field>
  6. <field name="inherit_id" ref="account.view_bank_statement_form"/>
  7. <field name="arch" type="xml">
  8. <field name="all_lines_reconciled" position="after">
  9. <button name="%(account_statement_line_create_action)d"
  10. string="Import Journal Items" type="action"
  11. class="oe_highlight"
  12. attrs="{'invisible':[('state', '!=', 'open')]}"/>
  13. </field>
  14. </field>
  15. </record>
  16. </odoo>