Skip to Content
Menu
This question has been flagged
2 Replies
4320 Views

while confirm an invoice i'm getting this access right issue. Can anybody help  about  which  particular  access  right  I  need  to  assign  to  my  custom  group ?

Avatar
Discard
Best Answer

The Access Rights Menu (available in Developer Mode, and only if you have permission to see it by being a member of the "Extra Rights / Technical Features" Group) is where you can see which Groups have access to the various models (and what permissions they have).


Normally you need to be in one of the Accounting groups.


EDIT (to address comment from @Mohamad):


We check for membership of the "Billing" group explicitly in the code:


From https://github.com/odoo/odoo/blob/15.0/addons/account/models/account_move.py#L2954


What this means is that your User needs to be in the group "Billing", even if you have moved all of the rights from that group to your own.


NOTE: It is best practice to MOVE rights from Odoo default groups to your own, to ensure no rights are ever forgotten. You can remove EVERY right from the Billing group if you need to, just make sure your Users are still members of it since we check explicitly for it.


Avatar
Discard

Hi Ray, i have this issue also where i duplicated the group 'Billing' and the duplicated group cant post invoice and gave the same error of the title. I see that the Access Rights are the same. what other Rules or Access Rights should be considered?

See my EDIT above