Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
5980 Widoki

Good day , I built and install a custom module in Odoo v8 , which I can access if I'm logged as an Administrator user .The problem is that when entering Odoo with any user other than Administrator the module not appear.

In what maner I can give privileges to users to use my module ?? Or what I have to do to show my module at all?

Thanks!




Awatar
Odrzuć
Najlepsza odpowiedź

Hi,

To make it visible for other users you have to define Access rights for your model.

Each access right is associated to a model, a group (or no group for global access), and a set of permissions: read, write, create, unlink. Such access rights are usually created by a CSV file named after its model: ir.model.access.csv.

Create a folder named "security"  in your module and inside that create ir.model.access.csv file:-

and there you can define your Access rights.

Eg code:-

id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink
access_idea_idea,idea.idea,model_idea_idea,base.group_user,1,1,1,0
access_idea_vote,idea.vote,model_idea_vote,base.group_user,1,1,1,0


Hope this helps.




Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
3
maj 24
14923
0
mar 16
3015
1
mar 15
4079
3
maj 25
3193
0
mar 25
743