From 44ee6eeabbea788a54c833424042971a518908ee Mon Sep 17 00:00:00 2001 From: mpascual Date: Fri, 13 Dec 2024 08:52:36 +0100 Subject: [PATCH] [ADD] account_analytic_menu: New module account_analytic_menu --- account_analytic_menu/README.rst | 100 ++++ account_analytic_menu/__init__.py | 0 account_analytic_menu/__manifest__.py | 17 + account_analytic_menu/readme/CONTRIBUTORS.md | 4 + account_analytic_menu/readme/DESCRIPTION.md | 1 + account_analytic_menu/readme/USAGE.md | 5 + .../static/description/index.html | 440 ++++++++++++++++++ .../views/account_menuitem.xml | 21 + .../odoo/addons/account_analytic_menu | 1 + setup/account_analytic_menu/setup.py | 6 + 10 files changed, 595 insertions(+) create mode 100644 account_analytic_menu/README.rst create mode 100644 account_analytic_menu/__init__.py create mode 100644 account_analytic_menu/__manifest__.py create mode 100644 account_analytic_menu/readme/CONTRIBUTORS.md create mode 100644 account_analytic_menu/readme/DESCRIPTION.md create mode 100644 account_analytic_menu/readme/USAGE.md create mode 100644 account_analytic_menu/static/description/index.html create mode 100644 account_analytic_menu/views/account_menuitem.xml create mode 120000 setup/account_analytic_menu/odoo/addons/account_analytic_menu create mode 100644 setup/account_analytic_menu/setup.py diff --git a/account_analytic_menu/README.rst b/account_analytic_menu/README.rst new file mode 100644 index 0000000000..8f6f4e9056 --- /dev/null +++ b/account_analytic_menu/README.rst @@ -0,0 +1,100 @@ +===================== +Account Analytic Menu +===================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:30ae9e30e0ea98bf0cee5523b9506babf5256d82cf9f39bbb5de555997040d07 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--analytic-lightgray.png?logo=github + :target: https://github.com/OCA/account-analytic/tree/16.0/account_analytic_menu + :alt: OCA/account-analytic +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-analytic-16-0/account-analytic-16-0-account_analytic_menu + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-analytic&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module adds a menu to structure the analytic in a more +user-friendly way.s + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +First make sure your user has the accounting permission. + +Then navegate to Invoicing -> Analytic Accounting. + +You will see all the Accounting info in this menu. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Lansana Barry +* Miquel Alzanillas +* Miquel Pascual + +Contributors +------------ + +- `APSL-Nagarro `__: + + - Lansana Barry <> + - Miquel Alzanillas <> + - Miquel Pascual <> + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +.. |maintainer-mpascuall| image:: https://github.com/mpascuall.png?size=40px + :target: https://github.com/mpascuall + :alt: mpascuall + +Current `maintainer `__: + +|maintainer-mpascuall| + +This module is part of the `OCA/account-analytic `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_analytic_menu/__init__.py b/account_analytic_menu/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/account_analytic_menu/__manifest__.py b/account_analytic_menu/__manifest__.py new file mode 100644 index 0000000000..e33316e3d3 --- /dev/null +++ b/account_analytic_menu/__manifest__.py @@ -0,0 +1,17 @@ +{ + "name": "Account Analytic Menu", + "version": "16.0.1.0.0", + "summary": """Add a menu to structure the analytic in a more + user-friendly way""", + "category": "Analytic Accounting", + "license": "AGPL-3", + "author": """Lansana Barry, Miquel Alzanillas, Miquel Pascual, + Odoo Community Association (OCA)""", + "website": "https://github.com/OCA/account-analytic", + "depends": ["analytic", "account"], + "data": [ + "views/account_menuitem.xml", + ], + "installable": True, + "maintainers": ["mpascuall"], +} diff --git a/account_analytic_menu/readme/CONTRIBUTORS.md b/account_analytic_menu/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..8af9bef076 --- /dev/null +++ b/account_analytic_menu/readme/CONTRIBUTORS.md @@ -0,0 +1,4 @@ +- [APSL-Nagarro](): + - Lansana Barry \<\<\>\> + - Miquel Alzanillas \<\<\>\> + - Miquel Pascual \<\<\>\> \ No newline at end of file diff --git a/account_analytic_menu/readme/DESCRIPTION.md b/account_analytic_menu/readme/DESCRIPTION.md new file mode 100644 index 0000000000..ff857aa939 --- /dev/null +++ b/account_analytic_menu/readme/DESCRIPTION.md @@ -0,0 +1 @@ +This module adds a menu to structure the analytic in a more user-friendly way.s \ No newline at end of file diff --git a/account_analytic_menu/readme/USAGE.md b/account_analytic_menu/readme/USAGE.md new file mode 100644 index 0000000000..c3159c8b63 --- /dev/null +++ b/account_analytic_menu/readme/USAGE.md @@ -0,0 +1,5 @@ +First make sure your user has the accounting permission. + +Then navegate to Invoicing -> Analytic Accounting. + +You will see all the Accounting info in this menu. \ No newline at end of file diff --git a/account_analytic_menu/static/description/index.html b/account_analytic_menu/static/description/index.html new file mode 100644 index 0000000000..167f6542f0 --- /dev/null +++ b/account_analytic_menu/static/description/index.html @@ -0,0 +1,440 @@ + + + + + +Account Analytic Menu + + + +
+

Account Analytic Menu

+ + +

Beta License: AGPL-3 OCA/account-analytic Translate me on Weblate Try me on Runboat

+

This module adds a menu to structure the analytic in a more +user-friendly way.s

+

Table of contents

+ +
+

Usage

+

First make sure your user has the accounting permission.

+

Then navegate to Invoicing -> Analytic Accounting.

+

You will see all the Accounting info in this menu.

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Lansana Barry
  • +
  • Miquel Alzanillas
  • +
  • Miquel Pascual
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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.

+

Current maintainer:

+

mpascuall

+

This module is part of the OCA/account-analytic project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/account_analytic_menu/views/account_menuitem.xml b/account_analytic_menu/views/account_menuitem.xml new file mode 100644 index 0000000000..ef5e710f3f --- /dev/null +++ b/account_analytic_menu/views/account_menuitem.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/setup/account_analytic_menu/odoo/addons/account_analytic_menu b/setup/account_analytic_menu/odoo/addons/account_analytic_menu new file mode 120000 index 0000000000..8982be444b --- /dev/null +++ b/setup/account_analytic_menu/odoo/addons/account_analytic_menu @@ -0,0 +1 @@ +../../../../account_analytic_menu \ No newline at end of file diff --git a/setup/account_analytic_menu/setup.py b/setup/account_analytic_menu/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/account_analytic_menu/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)