İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
770 Görünümler

Hello, 
im working in odoo 17, community edition.


my created users that are simple users in employees


but they are considered as public users, and they see the hr.employee.public.form .

with its own fields


Other users , like Officers and administrators see the hr.employee.form , 

with its own fields too



How can i change that , so that simple users can see the 
hr.employee.form.

or add in xml view a related entry to retrieve data from  hr.employee , without creating the fields again ( and relate them ) ?

also im not familiar with python code so i should avoid that and use the settings from Odoo GUI, 



Thank you in advance . 


Avatar
Vazgeç
Üretici

Anyone?

En İyi Yanıt

To let simple users see the full hr.employee.form (not the public one) without coding:

  1. Go to Settings > Users & Companies > Users
  2. Edit the user and assign them to the Employee group (base.group_user) instead of just Portal/Public.
  3. This grants access to internal employee views including hr.employee.form.

and solution with code :
A simple way is to inherit the employee form view and make sure it applies to all users, or remove the public view access rule.

Example to force your form for all users (in XML):
<odoo>

  <record id="view_employee_form_inherit" model="ir.ui.view">

    <field name="name">hr.employee.form.override</field>

    <field name="model">hr.employee</field>

    <field name="inherit_id" ref="hr.view_employee_form"/>

    <field name="priority" eval="20"/> 

    <field name="arch" type="xml">

      <!-- your modifications here -->

    </field>

  </record>

</odoo>


Avatar
Vazgeç
Üretici

all my users are selected as Internal Users , but they see the public form ,

about your code , do i paste it in hr.employee.public or in hr.employee form ?

Üretici

Sorry my mistake . i saw that " To let simple users see the full hr.employee.form (not the public one) without coding:"

Üretici

or is there any simple way to remove public access ?

İlgili Gönderiler Cevaplar Görünümler Aktivite
0
May 24
1245
1
Oca 24
1613
1
Tem 17
13694
3
Eyl 24
2083
1
Şub 24
2330