I want to invisible the one2many fields for stock manager and make visible to stock user and administrator.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
1
Reply
1449
Views
Hi,
If you are looking to hide a field for the group Manager and visible the same for the group user, then add the group attribute for the field like this,
<field name="field_name" groups="!stock.group_stock_manager, stock.group_stock_user"/>
Thanks
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
How to ORDER BY? [Odoo 10]
Solved
|
|
2
Nov 24
|
25068 | |
|
2
May 24
|
5513 | ||
|
3
Mar 24
|
4962 | ||
|
0
Mar 24
|
261 | ||
|
3
Feb 24
|
11416 |
Sometime we need to visible invisible some filed on the basis of login user group or we want to perform some action on the basis of login user.
Reference: https://goo.gl/Ts3qqK
Hope this will helps you.