This question has been flagged
4 Replies
8500 Views

hello guys, i want to make Show Full Accounting Features access right to be default when we in form view to create a voucher so the flow will be like this click button "create" -> Show Full Accounting Features will checked automatically -> click save then the user will have the access right for full accounting features  

Avatar
Discard
Best Answer

As per your question title, you want to add  Show Full Accounting Features per default for new created user and you can do that as below:

Enable Developer Mode then Go Odoo Settings -> General Settings -> enable Access Right and then click on the Default Access Rights  then the default user template will be opened and you will edit it and enable  Show Full Accounting Features and Save. Then create a new user and you will see that the feature is enabled.

Avatar
Discard
Best Answer

Hi, There is a link for the Video to show how you can enable the Odoo Accounting feature for community versions. https://www.youtube.com/watch?v=Oj3XywS0bEk 

Avatar
Discard
Best Answer

Hello,

If you want it by code,

Try this code in XML

-----------------------------------------

<record id="base.default_user" model="res.users">
<field name="groups_id" eval="[(4,ref('group_account_manager'))]"/>
</record>

or

If you want to do it from Interface, 

Go to users, and there you can find an Inactive User "Default User Template"

add that user in the group you want. next time you creating user, the user will be taken the defaults settings from this template user.


Thanks & Regards

Avinash N K

Avatar
Discard
Best Answer

Hi,

Please have a look at this video and see how you can set the access rights template for newly creating user in odoo: Default Access Rights For Newly Creating User in Odoo


Thanks

Avatar
Discard