[ADD] bank statements menu entries

This commit is contained in:
Sylvain LE GAL
2019-07-19 15:26:40 +02:00
committed by GuillemCForgeFlow
parent 854fdd4806
commit 3e46fe4317
4 changed files with 40 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
'account_tag_menu',
'account_type_menu',
],
'data': [
'views/menu.xml',
'views/view_account_bank_statement.xml',
],
'demo': [
'demo/res_groups.xml',
],

View File

@@ -1,10 +1,12 @@
In v12, this module only installs 4 modules :
In v12, this module installs 4 modules :
* ``account_coa_menu``
* ``account_group_menu``
* ``account_tag_menu``
* ``account_type_menu``
* Adds menu for bank statements.
For V13+, we could imagine to have a single module that creates all the
missing menus (and actions).

View File

@@ -0,0 +1,14 @@
<?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>
<menuitem id="menu_accounting_bank_and_cash"
name="Bank and Cash"
parent="account.menu_finance_entries"
sequence="15"/>
</odoo>

View File

@@ -0,0 +1,19 @@
<?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>
<menuitem id="menu_accounting_statement_bank"
action="account.action_bank_statement_tree"
parent="menu_accounting_bank_and_cash"
sequence="10"/>
<menuitem id="menu_accounting_statement_cash"
action="account.action_view_bank_statement_tree"
parent="menu_accounting_bank_and_cash"
sequence="20"/>
</odoo>