mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Add account_tag_menu
This commit is contained in:
48
account_tag_menu/README.rst
Normal file
48
account_tag_menu/README.rst
Normal 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.
|
||||
0
account_tag_menu/__init__.py
Normal file
0
account_tag_menu/__init__.py
Normal file
15
account_tag_menu/__manifest__.py
Normal file
15
account_tag_menu/__manifest__.py
Normal 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,
|
||||
}
|
||||
9
account_tag_menu/views/account_tag.xml
Normal file
9
account_tag_menu/views/account_tag.xml
Normal 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>
|
||||
Reference in New Issue
Block a user