diff --git a/maintenance_location/README.rst b/maintenance_location/README.rst index a4b91e8ff..589d773de 100644 --- a/maintenance_location/README.rst +++ b/maintenance_location/README.rst @@ -17,13 +17,13 @@ Maintenance Location :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmaintenance-lightgray.png?logo=github - :target: https://github.com/OCA/maintenance/tree/14.0/maintenance_location + :target: https://github.com/OCA/maintenance/tree/15.0/maintenance_location :alt: OCA/maintenance .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/maintenance-14-0/maintenance-14-0-maintenance_location + :target: https://translation.odoo-community.org/projects/maintenance-15-0/maintenance-15-0-maintenance_location :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/maintenance&target_branch=14.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/maintenance&target_branch=15.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -41,7 +41,7 @@ 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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -61,6 +61,10 @@ Contributors * Kevin Luna * Jaime Arroyo +* PT Solusi Agli Indonesia + * Panca Putra Pakpahan + + Maintainers ~~~~~~~~~~~ @@ -74,6 +78,6 @@ 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/maintenance `_ project on GitHub. +This module is part of the `OCA/maintenance `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/maintenance_location/__manifest__.py b/maintenance_location/__manifest__.py index d4246c01b..e044ac643 100644 --- a/maintenance_location/__manifest__.py +++ b/maintenance_location/__manifest__.py @@ -5,7 +5,7 @@ "name": "Maintenance Location", "summary": """ Define a location system for maintenance""", - "version": "14.0.1.0.0", + "version": "15.0.1.0.0", "license": "AGPL-3", "author": "CreuBlanca,Odoo Community Association (OCA)", "website": "https://github.com/OCA/maintenance", diff --git a/maintenance_location/models/maintenance_location.py b/maintenance_location/models/maintenance_location.py index 749778cb8..a5229c6a9 100644 --- a/maintenance_location/models/maintenance_location.py +++ b/maintenance_location/models/maintenance_location.py @@ -17,9 +17,7 @@ class MaintenanceLocation(models.Model): name = fields.Char(required=True) description = fields.Char() - complete_name = fields.Char( - "Complete Name", compute="_compute_complete_name", store=True - ) + complete_name = fields.Char(compute="_compute_complete_name", store=True) partner_id = fields.Many2one("res.partner") @@ -33,7 +31,7 @@ class MaintenanceLocation(models.Model): parent_path = fields.Char(index=True) latitude = fields.Float(digits=(16, 5)) longitude = fields.Float(digits=(16, 5)) - sequence = fields.Integer(string="Sequence", default=10) + sequence = fields.Integer(default=10) active = fields.Boolean(default=True) @api.depends("name", "parent_id.complete_name") diff --git a/maintenance_location/readme/CONTRIBUTORS.rst b/maintenance_location/readme/CONTRIBUTORS.rst index 3221219fa..e3858b562 100644 --- a/maintenance_location/readme/CONTRIBUTORS.rst +++ b/maintenance_location/readme/CONTRIBUTORS.rst @@ -2,3 +2,7 @@ * Enric Tobella * Kevin Luna * Jaime Arroyo + +* PT Solusi Agli Indonesia + * Panca Putra Pakpahan + diff --git a/maintenance_location/static/description/index.html b/maintenance_location/static/description/index.html index 5ea2f7fbc..d13075060 100644 --- a/maintenance_location/static/description/index.html +++ b/maintenance_location/static/description/index.html @@ -368,7 +368,7 @@

Maintenance Location

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:4bbadc3f945366acbd515935feaf10cdb5bb59efbfb63117a8fa5d17268cda05 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

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

+

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

Define a location system with hierarchy for maintenance equipments and requests.

Table of contents

@@ -387,7 +387,7 @@

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.

+feedback.

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

@@ -405,6 +405,8 @@

Contributors

* Enric Tobella * Kevin Luna * Jaime Arroyo +
  • PT Solusi Agli Indonesia +* Panca Putra Pakpahan
  • @@ -414,7 +416,7 @@

    Maintainers

    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/maintenance project on GitHub.

    +

    This module is part of the OCA/maintenance project on GitHub.

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

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