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.

18 lines
738 B

  1. <?xml version="1.0"?>
  2. <openerp>
  3. <data>
  4. <record id="notifications_email_user_info_form" model="ir.ui.view">
  5. <field name="name">mail.notifications res.users.form</field>
  6. <field name="model">res.users</field>
  7. <field name="inherit_id" ref="mail.view_users_form_mail"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//field[@name='notify_email']" position="after">
  10. <field name="notify_frequency" attrs="{'invisible': [('notify_email','=', 'none')]}" />
  11. <field name="notify_conf_ids" attrs="{'invisible': [('notify_email','=', 'none')]}" />
  12. </xpath>
  13. </field>
  14. </record>
  15. </data>
  16. </openerp>