Skip to Content
Menu
This question has been flagged
2 Replies
2468 Views

Odoo Enterprise 12.

How to manage access for users so that a specific user can only manage operations (receipt / delivery) for a specific warehouse ? Let say, person A who is in charge of warehouse A is not allowed to validate receipts for warehouse B.

Avatar
Discard
Best Answer

Hello,

Suppose you have two users A and B.

and Apply record rule('user_id','=', user.id) for User like when user A login than see own record.

Using this may be your problem solved.

Avatar
Discard
Best Answer

In receipt / delivery form add one field as In-charge Person (many2one - res.users).

Then, assign in-charge person under any group. After this define rules(ir.rule) like [('user_id','=',user.id)] . Like wise you have to create rules for managers etc.

Avatar
Discard