تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
3 الردود
6568 أدوات العرض

i'm working on a helpdesk module, and i'm appliying domains on users. So that each user can see only his records, but the problem is that domains apply to admin too.

How can i exclude admin from domain on users? 

الصورة الرمزية
إهمال
أفضل إجابة

Hi Karim OUBHAT

All depends where you are applying your domains. If they are used for ir.rules records in the security you could use the answer of @Kalpana Hemnani, because the admin bypass the security record rules. But if you are applying the domain directly on the target field, action or whatever object you are using for but not for security rules then the domain apply to all the users as a business rule so you indeed need to include the admin for your domain. Think that the admin always will have the id = 1 so you could check that if the user is not 1, for example:

 [('user_id', '=', uid), ('user_id', '!=', 1)]

that checks to only display the record for the actual user and that the actual user is not the admin, you could merge this domain using and '|' with your existing domain.

I repeat, this is only if you are not using ir.rule security records

الصورة الرمزية
إهمال
أفضل إجابة

Hello Karim,

Double check your domain, it should be ['|', ('user_id', '=', False), ('user_id', '=', 'user.id')] like this.

As well as Administrator concern, he is a super user. no security applies to super user. Admin can view all the records.

Let me know which domain you are applying. 

الصورة الرمزية
إهمال
أفضل إجابة

hi,

Axel is right,

you should use in yours record rule like   in rule   [('user_id', '=', uid), ('user_id', '!=', 1)]

الصورة الرمزية
إهمال