diff --git a/account_asset_management/static/description/index.html b/account_asset_management/static/description/index.html index 6001c740e..89ce75c33 100644 --- a/account_asset_management/static/description/index.html +++ b/account_asset_management/static/description/index.html @@ -3,7 +3,7 @@ - + Assets Management + + +
+

Assets Management Menu

+ + +

Beta License: AGPL-3 OCA/account-financial-tools Translate me on Weblate Try me on Runbot

+

This module changes the menu from which assets can be accessed, making it compatible with both Odoo Community +and Enterprise versions.

+

Table of contents

+
+ +
+
+

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 smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • ForgeFlow
  • +
+
+
+

Contributors

+
    +
  • Jordi Ballester (ForgeFlow)
  • +
+
+
+

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.

+

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

+

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

+
+
+
+ + diff --git a/account_asset_management_menu/views/menuitem.xml b/account_asset_management_menu/views/menuitem.xml new file mode 100644 index 000000000..faf9bbc73 --- /dev/null +++ b/account_asset_management_menu/views/menuitem.xml @@ -0,0 +1,8 @@ + + + + diff --git a/setup/account_asset_management_menu/odoo/addons/account_asset_management_menu b/setup/account_asset_management_menu/odoo/addons/account_asset_management_menu new file mode 120000 index 000000000..da5d46fb9 --- /dev/null +++ b/setup/account_asset_management_menu/odoo/addons/account_asset_management_menu @@ -0,0 +1 @@ +../../../../account_asset_management_menu \ No newline at end of file diff --git a/setup/account_asset_management_menu/setup.py b/setup/account_asset_management_menu/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_asset_management_menu/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)