Files
gsinghpal fc3c966484 changes
2026-03-13 12:38:28 -04:00

38 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="base.user_root" model="res.users">
<field name="groups_id" eval="[(4, ref('account.group_account_user'))]"/>
</record>
<record id="base.user_admin" model="res.users">
<field name="groups_id" eval="[(4, ref('account.group_account_user'))]"/>
</record>
<!-- To change the category name from Invoicing -> Accounting-->
<record model="ir.module.category" id="base.module_category_accounting_accounting">
<field name="name">Accounting</field>
<field name="description">Helps you handle your invoices and accounting actions.
Invoicing: Invoices, payments and basic invoice reporting.
Invoicing &amp; Banks: adds the accounting dashboard, bank management and follow-up reports.
Bookkeeper: access to all Accounting features, including reporting, asset management, analytic accounting, without configuration rights.
Administrator: full access including configuration rights and accounting data management.
Readonly: access to all the accounting data but in readonly mode, no actions allowed.
</field>
</record>
<record id="account.group_account_readonly" model="res.groups">
<field name="name">Read-only</field>
</record>
<record id="account.group_account_user" model="res.groups">
<field name="name">Bookkeeper</field>
</record>
<record id="account.group_account_manager" model="res.groups">
<field name="implied_ids" eval="[(3, ref('account.group_account_invoice')), (4, ref('account.group_account_user'))]"/>
</record>
</odoo>