跳至内容
菜单
此问题已终结
1 回复
3187 查看

How to restrict the create and edit option in many2one field for particular  user group in odoo 16?

形象
丢弃
最佳答案

Hi @Hemanth

Hope you are doing well,

For you to implement this in Odoo 16 you will need to take the field twice and add the groups to the fields so that one field is visible when it does not have your specific group while other is visible whrn it has your specific group.

Please find Code Example in Comment. 


In the above example when debug mode is active (User has 'base.group_no_one' group) then only the field becomes create and edit. 

Hope this would be helpful.

Thanks & Regards,
Email:   odoo@aktivsoftware.com 

Skype: kalpeshmaheshwari

形象
丢弃

Here is an example that could be helpful :-

<field name="field_name" options="{'no_create': True, 'no_edit': True}" groups="!base.group_no_one"/>
<field name="field_name" groups="base.group_no_one"/>

相关帖文 回复 查看 活动
1
3月 22
2740
1
3月 15
5793
1
3月 15
16047
2
7月 25
1287
2
12月 24
1924