hello everyone, i'm kind of new in odoo. I'm currently in a project where i have to develop a group that has access only to one wizard in odoo 12. I want the user to have access only to one wizard and nothing more.
So i defined a group like this:
then i gave the access rigths like this:
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_model,module.model.access,module.model_name,,0,0,0,0
access_model_second,module.model.access_second,module.model_name,new_group,1,0,0,0
With this configuration when i login in to the server the user belonging to the new_group does not have access to anything.
But with xmlrpc the user can read from res.users and res.partner and so on depending on the modules installed on the server.
As i've explained i want the user belonging to this group to only have access to the wizard and nothing more.
I would appreciate any help.
Best regards
Miguel Figueiredo