a1cac726b5
- account.tax.group views : remove views as there are now included in odoo account module - account.account.template views : port privatized views in odoo 16.0 from Odoo 15.0 CE. - account.account.tag views : adapt to V16 - account.fiscal.position.template views : add missing fields - account.group views : adapt to V16 - account.type views : remove as the model disappeared - account.chart.template views : port privatized views in odoo 16.0 from Odoo 15.0 CE. - improve documentation - FIX : remove useless duplicated fr_FR.po file - ADD : display again 'Show full accounting features' group that is hidden in CE release
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<?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>
|
||
<!-- Rename groups to fit with EE naming
|
||
Previously named 'Show Accounting Features – Readonly' in CE ->
|
||
-->
|
||
<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>
|
||
|
||
<!-- Rename groups to fit with EE naming
|
||
Previously named 'Show Full Accounting Features' in CE ->
|
||
-->
|
||
<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>
|
||
|
||
<!-- Rename groups to fit with EE naming
|
||
Previously named 'Billing Administrator' in CE ->
|
||
-->
|
||
<record id="account.group_account_manager" model="res.groups">
|
||
<field name="name">Accountant</field>
|
||
<field name="category_id" ref="base.module_category_accounting_accounting" />
|
||
</record>
|
||
</odoo>
|