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.

23 lines
1.0 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright 2019 Thore Baden
  4. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. -->
  6. <odoo>
  7. <record id="account_invoice_send_wizard_form" model="ir.ui.view">
  8. <field name="name">Send Invoice</field>
  9. <field name="model">account.invoice.send</field>
  10. <field name="inherit_id" ref="account.account_invoice_send_wizard_form"/>
  11. <field name="arch" type="xml">
  12. <xpath expr="//field[@name='attachment_ids']" position="after">
  13. <field name="model" invisible="1"/>
  14. <field name="res_id" invisible="1"/>
  15. <field name="can_attach_attachment" invisible="1"/>
  16. <div attrs="{'invisible': [('can_attach_attachment', '=', False)]}">
  17. <br />
  18. <field name="object_attachment_ids" widget="many2many_checkboxes" domain="[('res_model', '=', model), ('res_id', '=', res_id)]" />
  19. </div>
  20. </xpath>
  21. </field>
  22. </record>
  23. </odoo>