Ir al contenido
Menú
Se marcó esta pregunta
5 Respuestas
11929 Vistas

Hello. I have an ERP instance with several companies.


I wan't to set a default view filter for my custom module which will show only records from current users company.

For example a user should view only records where company_id is equal to his company. It is possible to do this?

I have tried to use something like this, but it isn't working.


filter string="My Company" name="my company" domain="[('company_id','==',[user.company_id.id])]" />

Avatar
Descartar

Try this one. [('company_id','child_of',[user.company_id.id])]

also try this ['|','|',('company_id.child_ids','child_of',[user.company_id.id]),('company_id','child_of',[user.company_id.id]),('company_id','=',False)]

have you define comapny_id (many2one) field in your custom object?

Autor Mejor respuesta

Unfortunattly "Solanki Shamji" solution is not working. It says " Uncaught TypeError: Cannot read property 'length' of undefined" :( 

Avatar
Descartar

have you define comapny_id (many2one) field in your custom object?

Mejor respuesta

Here is the answer:

In the group of your user in settings for example : Human Ressources/Manager or Human Ressources/Emplyees in settings, if you click on it, you will find some thing named "Rules". There, you add:

General:

name:

object: object of your custom module

active: True

Rule definition:

['|', ('employee_id.user_id', '=', user.id), ('employee_id.department_id.manager_id.user_id', '=', user.id)]

and then you add the group of users: Human Ressources/Manager or Human Ressources/Emplyees

i have worked with this to display for each employee only his own payslips.

It works fine


Avatar
Descartar

Try it and if it works for you just vote

Publicaciones relacionadas Respuestas Vistas Actividad
0
jul 25
753
1
may 25
1501
1
may 25
1657
2
mar 25
1430
1
mar 25
1642