mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
[ADD] bank statements menu entries
This commit is contained in:
committed by
GuillemCForgeFlow
parent
854fdd4806
commit
3e46fe4317
@@ -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',
|
||||
],
|
||||
|
||||
@@ -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).
|
||||
|
||||
|
||||
14
account_menu/views/menu.xml
Normal file
14
account_menu/views/menu.xml
Normal 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>
|
||||
19
account_menu/views/view_account_bank_statement.xml
Normal file
19
account_menu/views/view_account_bank_statement.xml
Normal 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>
|
||||
Reference in New Issue
Block a user