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.

17 lines
886 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record model="ir.ui.view" id="email_compose_message_wizard_inherit_form">
  4. <field name="name">mail.compose.message.form (mail_attach_existing_attachment)</field>
  5. <field name="model">mail.compose.message</field>
  6. <field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//field[@name='attachment_ids']" position="after">
  9. <field name="can_attach_attachment" invisible="1"/>
  10. <div attrs="{'invisible': [('can_attach_attachment', '=', False)]}">
  11. <br />
  12. <field name="object_attachment_ids" widget="many2many_checkboxes" domain="[('res_model', '=', model), ('res_id', '=', res_id)]" />
  13. </div>
  14. </xpath>
  15. </field>
  16. </record>
  17. </odoo>