im_livechat/views/res_users_views.xml

44 lines
2.0 KiB
XML
Raw Permalink Normal View History

<?xml version="1.0"?>
<odoo>
<data>
<!-- Update Preferences form !-->
<record id="res_users_form_view_simple_modif" model="ir.ui.view">
<field name="name">res.users.preferences.form.im_livechat</field>
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_form_simple_modif"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='tz']" position="after">
<field name="has_access_livechat" invisible="1"/>
<field name="livechat_username" string="Online Chat Name"
invisible="not has_access_livechat"/>
<field name="livechat_lang_ids" string="Online Chat Language"
invisible="not has_access_livechat"
options="{'no_create': True, 'no_edit': True, 'no_quick_create': True}"
widget="many2many_tags"/>
</xpath>
</field>
</record>
<!-- Update user form !-->
<record id="res_users_form_view" model="ir.ui.view">
<field name="name">res.users.form.im_livechat</field>
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_form"/>
<field name="arch" type="xml">
<xpath expr="//group[@name='messaging']" position="after">
<field name="has_access_livechat" invisible="1"/>
<group name="livechat" string="Livechat"
invisible="not has_access_livechat">
<field name="livechat_username"/>
<field name="livechat_lang_ids" string="Online Chat Language"
options="{'no_create': True, 'no_edit': True, 'no_quick_create': True}"
widget="many2many_tags"/>
</group>
</xpath>
</field>
</record>
</data>
</odoo>