Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
3 Відповіді
4372 Переглядів

Hello,

Is there way to restrict product permission to each user? I would like to give the product permission to user but don't want to access all products. We want user to see only products that we allowed.

Please help me how to restrict this permission.

Thanks

Аватар
Відмінити
Найкраща відповідь

Hi,


Yes, you can restrict users to only see specific products in Odoo 15 by using a custom field and record rule:


    Add a Many2many field (e.g. allowed_user_ids) on the product.template or product.product model to assign which users can access each product.

    allowed_user_ids = fields.Many2many('res.users', string='Allowed Users')


    Create a record rule with the following domain:


    ['|', ('allowed_user_ids', 'in', [user.id]), ('allowed_user_ids', '=', False)]


    This ensures users only see products they are explicitly allowed to view, or products with no restriction.


    (Optional) Assign the rule to a specific user group if you only want to apply it to certain users.


With this setup, users will only see products where they are listed in the "Allowed Users" field.


Also you can refer below custom odoo module ,


https://apps.odoo.com/apps/modules/18.0/ace_user_specific_product_allocation


Hope it helps

Аватар
Відмінити
Найкраща відповідь

Yes, you can control product each user using bellow odoo modules 

Visit Link: https://apps.odoo.com/apps/modules/18.0/ace_user_specific_product_allocation



Аватар
Відмінити
Найкраща відповідь

You can add a field to product model like:
user_ids = fields.Many2many('res.users', 'Users Have Access')

the override read the tree and the form read domains based on users who have access to the product.

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
1
вер. 22
3693
3
серп. 24
6495
3
серп. 23
4413
1
жовт. 22
3839
2
серп. 22
2914