I want to replace the existing access right of a model for a specific group with my own. I don't want to make changes in the base modules and want to achieve this by making changes in my own custom modules. Any good approach for this?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Financeiro
- Inventário
- PoS
- Project
- MRP
Esta pergunta foi sinalizada
Hi,
You can override that by inheritance by defining security file in your custom module, for that you have to do:-
- create a 'security' folder and 'ir.model.access.csv' in your custom module.
- make sure you added that file path in " openerp.py " file
- For better understanding we can take an Example. Let us assume that you want to change security access right in 'hr' module
access_hr_employee_user,hr.employee user,model_hr_employee,base.group_hr_user,1,1,1,1
- for changing this you have to define new access right in your module like this:-
hr.access_hr_employee_user,hr.employee user,model_hr_employee,base.group_hr_user,1,0,0,0
Hope this helps....
I tried it in odoo 9 community, but i'm getting following error: "no dataset found for external id 'model_hr_employee' in field Object"
my code:
hr.access_hr_employee_user,hr.employee user,model_hr_employee,base.group_hr_user,1,0,0,0
hr.access_hr_department_user,hr.department.user,model_hr_department,base.group_hr_user,1,0,0,0
i got it: you've got to inherit the model thingy as wel, like so:
[...] hr.model_hr_employee,base.group_hr_user,1,0,0,0
Está gostando da discussão? Não fique apenas lendo, participe!
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-sePublicações relacionadas | Respostas | Visualizações | Atividade | |
---|---|---|---|---|
|
1
mar. 25
|
841 | ||
|
0
out. 24
|
887 | ||
|
0
dez. 20
|
2746 | ||
|
2
jun. 20
|
16968 | ||
|
0
dez. 18
|
2565 |