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
28 lines
797 B
XML
28 lines
797 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!--
|
|
Copyright (C) 2019 - 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 'Billing' -> 'Accounting' -->
|
|
<record id="account.menu_finance" model="ir.ui.menu">
|
|
<field name="name">Accounting</field>
|
|
</record>
|
|
|
|
<menuitem
|
|
id="menu_accounting_bank_and_cash"
|
|
name="Bank and Cash"
|
|
parent="account.menu_finance_entries"
|
|
sequence="15"
|
|
/>
|
|
<menuitem
|
|
id="menu_account_coa_settings"
|
|
sequence="200"
|
|
name="Templates"
|
|
parent="account.menu_finance_configuration"
|
|
groups="base.group_no_one"
|
|
/>
|
|
</odoo>
|