2022-10-10 00:17:49 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<!--
|
|
|
|
Copyright (C) 2022-Today GRAP (http://www.grap.coop)
|
|
|
|
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
|
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
-->
|
|
|
|
<odoo>
|
2023-01-19 16:40:52 +01:00
|
|
|
<!-- Change groups to fit with EE configuration -->
|
|
|
|
|
|
|
|
<!-- Level 2:
|
|
|
|
Name: Show Accounting Features - Readonly -> Read-only
|
|
|
|
Parent: Technical -> Accounting
|
|
|
|
-->
|
|
|
|
|
2022-10-10 00:17:49 +02:00
|
|
|
<record id="account.group_account_readonly" model="res.groups">
|
|
|
|
<field name="name">Read-only</field>
|
|
|
|
<field name="category_id" ref="base.module_category_accounting_accounting" />
|
|
|
|
</record>
|
|
|
|
|
2023-01-19 16:40:52 +01:00
|
|
|
<!-- Level 3:
|
|
|
|
Name: Show Full Accounting Features -> Bookkeeper
|
|
|
|
Parent: Technical -> Accounting
|
|
|
|
-->
|
2022-10-10 00:17:49 +02:00
|
|
|
<record id="account.group_account_user" model="res.groups">
|
|
|
|
<field name="name">Bookkeeper</field>
|
|
|
|
<field name="category_id" ref="base.module_category_accounting_accounting" />
|
|
|
|
</record>
|
|
|
|
|
2023-01-19 16:40:52 +01:00
|
|
|
<!-- Level 4:
|
|
|
|
Name: Billing Administrator -> Accountant
|
|
|
|
Implied Groups : account.group_account_invoice -> account.group_account_user
|
|
|
|
-->
|
2022-10-10 00:17:49 +02:00
|
|
|
<record id="account.group_account_manager" model="res.groups">
|
|
|
|
<field name="name">Accountant</field>
|
2023-01-19 16:40:52 +01:00
|
|
|
<field
|
|
|
|
name="implied_ids"
|
|
|
|
eval="[(6, 0, [ref('account.group_account_user')])]"
|
|
|
|
/>
|
2022-10-10 00:17:49 +02:00
|
|
|
</record>
|
2023-01-19 16:40:52 +01:00
|
|
|
|
2022-10-10 00:17:49 +02:00
|
|
|
</odoo>
|