mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
FIX project_stage Added ACL allowing Employees to read project stages, and Project Managers to do all.
This commit is contained in:
@@ -13,6 +13,7 @@ Adds stages to Projects themselves.
|
||||
'project',
|
||||
],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'views/project_views.xml',
|
||||
],
|
||||
'installable': True,
|
||||
|
||||
3
project_stage/security/ir.model.access.csv
Normal file
3
project_stage/security/ir.model.access.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_project_type,access_project_type,model_project_type,base.group_user,1,0,0,0
|
||||
manage_project_type,manage_project_type,model_project_type,project.group_project_manager,1,1,1,1
|
||||
|
Reference in New Issue
Block a user