[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:
2025-01-09 16:24:20 +01:00
parent a8e25af141
commit e24843bf18
8 changed files with 98 additions and 12 deletions

View 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.

View 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': {
}
}

View 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"

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<menuitem
id="deposit_menu"
name="Deposit"
parent="account.menu_finance"
sequence="5"/>
<menuitem
id="account_cash_deposit.account_cash_deposit_menu"
parent="account_usability_deposit_menu.deposit_menu"
sequence="1"/>
<menuitem
id="account_check_deposit.menu_check_deposit_tree"
parent="account_usability_deposit_menu.deposit_menu"
sequence="2"/>
</odoo>