Add account_tag_menu

This commit is contained in:
Fekete Mihai
2018-03-14 19:14:32 +02:00
parent bb92c25b36
commit 6e960b04c0
4 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3
=================
Account Tags Menu
=================
This module adds a menu entry *Account Tags* under *Accounting > Configuration > Accounting*,
because this menu entry doesn't exists in the official *account* module of Odoo 11.
Usage
=====
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/92/11.0
Bug Tracker
===========
Bugs are tracked on `GitHub Issues
<https://github.com/OCA/account-financial-tools/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
------------
* Fekete Mihai <feketemihai@gmail.com>
Maintainer
----------
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
To contribute to this module, please visit https://odoo-community.org.

View File

View File

@@ -0,0 +1,15 @@
# Copyright 2018 Forest and Biomass Romania
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Account Tag Menu',
'version': '11.0.1.0.0',
'category': 'Accounting',
'license': 'AGPL-3',
'summary': "Adds a menu entry for Account Tags",
'author': "Forest and Biomass Romania, Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/account-financial-tools',
'depends': ['account'],
'data': ['views/account_tag.xml'],
'installable': True,
}

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<menuitem id="account_tag_menu"
action="account.account_tag_action"
sequence="40"
parent="account.account_account_menu"/>
</odoo>