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.
32 lines
1.2 KiB
32 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).-->
|
|
<odoo>
|
|
|
|
<record id="view_res_users_form_inherit_profile" model="ir.ui.view">
|
|
<field name="name">res.users.form.inherit</field>
|
|
<field name="model">res.users</field>
|
|
<field name="inherit_id" ref="base.view_users_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='role_line_ids']" position="before">
|
|
<group>
|
|
<field
|
|
name="profile_ids"
|
|
widget="many2many_tags"
|
|
attrs="{'readonly': True}"
|
|
/>
|
|
<field
|
|
name="profile_id"
|
|
domain="[('id', 'in', profile_ids)]"
|
|
options="{'no_create_edit': True, 'no_open': True}"
|
|
/>
|
|
</group>
|
|
</xpath>
|
|
<xpath
|
|
expr="//field[@name='role_line_ids']//field[@name='is_enabled']"
|
|
position="after"
|
|
>
|
|
<field name="profile_id" />
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|