[REF]account_usability_misc:create account_usability_deposit_menu to remove account_ceck_deposit and account_cash_deposit dependency from account_usability_misc
This commit is contained in:
49
account_usability_deposit_menu/README.rst
Normal file
49
account_usability_deposit_menu/README.rst
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
==============================
|
||||||
|
account_usability_deposit_menu
|
||||||
|
==============================
|
||||||
|
|
||||||
|
Various chantes to improve the usability of Account application
|
||||||
|
|
||||||
|
Installation
|
||||||
|
============
|
||||||
|
|
||||||
|
Use Odoo normal module installation procedure to install
|
||||||
|
``account_usability_deposit_menu``.
|
||||||
|
|
||||||
|
Description
|
||||||
|
===========
|
||||||
|
|
||||||
|
- Brings together the check and the cash deposit submenus under a common Deposit menu
|
||||||
|
|
||||||
|
Known issues / Roadmap
|
||||||
|
======================
|
||||||
|
|
||||||
|
None yet.
|
||||||
|
|
||||||
|
Bug Tracker
|
||||||
|
===========
|
||||||
|
|
||||||
|
Bugs are tracked on `our issues website <https://github.com/elabore-coop/bank_statement_line_prevent_creating/issues>`_. In case of
|
||||||
|
trouble, please check there if your issue has already been
|
||||||
|
reported. If you spotted it first, help us smashing it by providing a
|
||||||
|
detailed and welcomed feedback.
|
||||||
|
|
||||||
|
Credits
|
||||||
|
=======
|
||||||
|
|
||||||
|
Contributors
|
||||||
|
------------
|
||||||
|
|
||||||
|
* Laetitia Da Costa
|
||||||
|
|
||||||
|
Funders
|
||||||
|
-------
|
||||||
|
|
||||||
|
The development of this module has been financially supported by:
|
||||||
|
* Elabore (https://elabore.coop)
|
||||||
|
|
||||||
|
|
||||||
|
Maintainer
|
||||||
|
----------
|
||||||
|
|
||||||
|
This module is maintained by Elabore.
|
0
account_usability_deposit_menu/__init__.py
Normal file
0
account_usability_deposit_menu/__init__.py
Normal file
22
account_usability_deposit_menu/__manifest__.py
Normal file
22
account_usability_deposit_menu/__manifest__.py
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
'name': 'Account Usability Deposit Menu',
|
||||||
|
'version': '16.0.1.0.0',
|
||||||
|
'description': 'Create Deposit menu',
|
||||||
|
'summary': 'Brings together the check and the cash deposit submenus under a common Deposit menu ',
|
||||||
|
'author': 'Elabore',
|
||||||
|
'website': 'https://elabore.coop/',
|
||||||
|
'license': 'AGPL-3',
|
||||||
|
'category': 'Accounting',
|
||||||
|
'depends': [
|
||||||
|
'account_check_deposit',
|
||||||
|
'account_cash_deposit',
|
||||||
|
],
|
||||||
|
'data': [
|
||||||
|
'views/account_menu.xml',
|
||||||
|
],
|
||||||
|
'installable': True,
|
||||||
|
'auto_install': True,
|
||||||
|
'application': False,
|
||||||
|
'assets': {
|
||||||
|
}
|
||||||
|
}
|
22
account_usability_deposit_menu/i18n/fr.po
Normal file
22
account_usability_deposit_menu/i18n/fr.po
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * account_usability_deposit_menu
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Odoo Server 16.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2024-01-18 10:32+0000\n"
|
||||||
|
"PO-Revision-Date: 2024-01-18 10:32+0000\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: \n"
|
||||||
|
"Plural-Forms: \n"
|
||||||
|
|
||||||
|
#. module: account_usability_deposit_menu
|
||||||
|
#: model:ir.ui.menu,name:account_usability_deposit_menu.deposit_menu
|
||||||
|
msgid "Deposit"
|
||||||
|
msgstr "Dépôt"
|
||||||
|
|
@@ -7,10 +7,10 @@
|
|||||||
sequence="5"/>
|
sequence="5"/>
|
||||||
<menuitem
|
<menuitem
|
||||||
id="account_cash_deposit.account_cash_deposit_menu"
|
id="account_cash_deposit.account_cash_deposit_menu"
|
||||||
parent="account_usability_misc.deposit_menu"
|
parent="account_usability_deposit_menu.deposit_menu"
|
||||||
sequence="1"/>
|
sequence="1"/>
|
||||||
<menuitem
|
<menuitem
|
||||||
id="account_check_deposit.menu_check_deposit_tree"
|
id="account_check_deposit.menu_check_deposit_tree"
|
||||||
parent="account_usability_misc.deposit_menu"
|
parent="account_usability_deposit_menu.deposit_menu"
|
||||||
sequence="2"/>
|
sequence="2"/>
|
||||||
</odoo>
|
</odoo>
|
@@ -1,6 +1,6 @@
|
|||||||
===============
|
======================
|
||||||
account_usability_misc
|
account_usability_misc
|
||||||
===============
|
======================
|
||||||
|
|
||||||
Various chantes to improve the usability of Account application
|
Various chantes to improve the usability of Account application
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
'name': 'Account Usability Misc',
|
'name': 'Account Usability Misc',
|
||||||
'version': '16.0.1.3.0',
|
'version': '16.0.2.0.0',
|
||||||
'description': 'account usability misc : improve account usability in v16',
|
'description': 'account usability misc : improve account usability in v16',
|
||||||
'summary': 'Various chantes to improve the usability of Account application',
|
'summary': 'Various chantes to improve the usability of Account application',
|
||||||
'author': 'Elabore',
|
'author': 'Elabore',
|
||||||
@@ -9,13 +9,11 @@
|
|||||||
'category': 'Accounting',
|
'category': 'Accounting',
|
||||||
'depends': [
|
'depends': [
|
||||||
'account','base','account_reconcile_oca',
|
'account','base','account_reconcile_oca',
|
||||||
'account_check_deposit','account_cash_deposit',
|
|
||||||
'account_statement_base',
|
'account_statement_base',
|
||||||
],
|
],
|
||||||
'data': [
|
'data': [
|
||||||
'security/ir.model.access.csv',
|
'security/ir.model.access.csv',
|
||||||
'views/account_search.xml',
|
'views/account_search.xml',
|
||||||
'views/account_menu.xml',
|
|
||||||
'views/account_tree_view.xml',
|
'views/account_tree_view.xml',
|
||||||
"views/bank_statement_line_views.xml",
|
"views/bank_statement_line_views.xml",
|
||||||
],
|
],
|
||||||
|
@@ -15,11 +15,6 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
"Plural-Forms: \n"
|
"Plural-Forms: \n"
|
||||||
|
|
||||||
#. module: account_usability_misc
|
|
||||||
#: model:ir.ui.menu,name:account_usability_misc.deposit_menu
|
|
||||||
msgid "Deposit"
|
|
||||||
msgstr "Dépôt"
|
|
||||||
|
|
||||||
#. module: account_usability_misc
|
#. module: account_usability_misc
|
||||||
#: model_terms:ir.ui.view,arch_db:account_usability_misc.account_move_line_search_reconcile_view_inherit
|
#: model_terms:ir.ui.view,arch_db:account_usability_misc.account_move_line_search_reconcile_view_inherit
|
||||||
msgid "Amount/Name/Partner"
|
msgid "Amount/Name/Partner"
|
||||||
|
Reference in New Issue
Block a user