mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
@@ -45,13 +45,15 @@ To see all the menus, make sure:
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
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).
|
||||
|
||||
|
||||
@@ -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,5 +1,6 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_menu
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
@@ -12,3 +13,18 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: account_menu
|
||||
#: model:ir.ui.menu,name:account_menu.menu_accounting_statement_bank
|
||||
msgid "Bank Statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_menu
|
||||
#: model:ir.ui.menu,name:account_menu.menu_accounting_bank_and_cash
|
||||
msgid "Bank and Cash"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_menu
|
||||
#: model:ir.ui.menu,name:account_menu.menu_accounting_statement_cash
|
||||
msgid "Cash Registers"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -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).
|
||||
|
||||
|
||||
@@ -394,12 +394,13 @@ ul.auto-toc {
|
||||
</div>
|
||||
<div class="section" id="known-issues-roadmap">
|
||||
<h1><a class="toc-backref" href="#id2">Known issues / Roadmap</a></h1>
|
||||
<p>In v12, this module only installs 4 modules :</p>
|
||||
<p>In v12, this module installs 4 modules :</p>
|
||||
<ul class="simple">
|
||||
<li><tt class="docutils literal">account_coa_menu</tt></li>
|
||||
<li><tt class="docutils literal">account_group_menu</tt></li>
|
||||
<li><tt class="docutils literal">account_tag_menu</tt></li>
|
||||
<li><tt class="docutils literal">account_type_menu</tt></li>
|
||||
<li>Adds menu for bank statements.</li>
|
||||
</ul>
|
||||
<p>For V13+, we could imagine to have a single module that creates all the
|
||||
missing menus (and actions).</p>
|
||||
|
||||
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