Skip to content
Snippets Groups Projects
Commit e78998c2 authored by Hubert Van de Walle (huvw)'s avatar Hubert Van de Walle (huvw)
Browse files

[FIX] hr_maintenance: use hr.employee -> .public when missing rights


Steps to reproduce
==================

- Login as a user with no rights
- Use a mobile viewport
- Create a new Maintenance Request
- Edit the Created By field

-> A traceback occurs because the user has no rights

Solution
========

We extend the Many2OneField to accept a relation option and Depending on
whether the user has the rights, use the correct one.

This is similar to 41eaff0f

opw-3430105

closes odoo/odoo#132197

Signed-off-by: default avatarSofie Gvaladze (sgv) <sgv@odoo.com>
parent a692a110
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,13 @@
<field name="arch" type="xml">
<xpath expr="//field[@name='owner_user_id']" position="replace">
<field name="employee_id" string="Created By"
options="{'no_create_edit': True, 'no_open': True}"/>
widget="many2one_avatar_employee"
options="{'no_create_edit': True, 'no_open': True, 'relation': 'hr.employee.public'}"
groups="!hr.group_hr_user"/>
<field name="employee_id" string="Created By"
widget="many2one_avatar_employee"
options="{'no_create_edit': True, 'no_open': True, 'relation': 'hr.employee'}"
groups="hr.group_hr_user"/>
</xpath>
</field>
</record>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment