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.

27 lines
1019 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <data>
  4. <record model="ir.ui.view" id="email_compose_message_wizard_form_private">
  5. <field name="name">mail.compose.message.form.private</field>
  6. <field name="model">mail.compose.message</field>
  7. <field name="groups_id" eval="[(4,ref('base.group_user'))]"/>
  8. <field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
  9. <field name="arch" type="xml">
  10. <data>
  11. <xpath expr="//field[@name='active_domain']" position="after">
  12. <field name="is_private" invisible="1" />
  13. </xpath>
  14. <xpath expr="//div[@groups='base.group_user']/span[2]" position="attributes">
  15. <attribute name="attrs">{'invisible': [('is_private', '=', True)]}
  16. </attribute>
  17. </xpath>
  18. </data>
  19. </field>
  20. </record>
  21. </data>
  22. </odoo>