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.

25 lines
996 B

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