Hi,
It is possible to make a read only view of the opened maintenance requests of a specific maintenance team?
I want that the users can see their requests but can't modify the stage of then.
Thnks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
It is possible to make a read only view of the opened maintenance requests of a specific maintenance team?
I want that the users can see their requests but can't modify the stage of then.
Thnks
Hi Ibrahim,
is possible to apply that view to a specific group of users?
for example, create a user group called “read only view”.
another inquire is... can i display that view in a specific link of the menu, like “Maintenance Requests Status”?
Thnks a lot!
Hi Luis,
1- Declare a boolean field :
fields_readonly = fields.Boolean(compute='compute_fields_readonly')
2- then if your function:
@api.multi
for record in self:
if user.has_group('module.your_maintenance_team_group'):
record.fields_readonly = True
3- in your view, add boolean to view with invisible="1" and attrs readonly if the boolean is true.
Hope this helps.
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
2
Mar 19
|
6450 | ||
|
1
Oct 24
|
251 | ||
|
2
Jan 24
|
492 | ||
|
2
Dec 23
|
476 | ||
|
1
Dec 23
|
432 |