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
18 lines
738 B
<?xml version="1.0"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="notifications_email_user_info_form" model="ir.ui.view">
|
|
<field name="name">mail.notifications res.users.form</field>
|
|
<field name="model">res.users</field>
|
|
<field name="inherit_id" ref="mail.view_users_form_mail"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='notify_email']" position="after">
|
|
<field name="notify_frequency" attrs="{'invisible': [('notify_email','=', 'none')]}" />
|
|
<field name="notify_conf_ids" attrs="{'invisible': [('notify_email','=', 'none')]}" />
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|