diff --git a/setup/stock_vertical_lift_server_env/odoo/addons/stock_vertical_lift_server_env b/setup/stock_vertical_lift_server_env/odoo/addons/stock_vertical_lift_server_env new file mode 120000 index 000000000..38d97a993 --- /dev/null +++ b/setup/stock_vertical_lift_server_env/odoo/addons/stock_vertical_lift_server_env @@ -0,0 +1 @@ +../../../../stock_vertical_lift_server_env \ No newline at end of file diff --git a/setup/stock_vertical_lift_server_env/setup.py b/setup/stock_vertical_lift_server_env/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_vertical_lift_server_env/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/stock_vertical_lift_server_env/README.rst b/stock_vertical_lift_server_env/README.rst new file mode 100644 index 000000000..2d99928db --- /dev/null +++ b/stock_vertical_lift_server_env/README.rst @@ -0,0 +1,85 @@ +================================== +Vertical Lift - Server Environment +================================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png + :target: https://odoo-community.org/page/development-status + :alt: Alpha +.. |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%2Fstock--logistics--warehouse-lightgray.png?logo=github + :target: https://github.com/OCA/stock-logistics-warehouse/tree/14.0/stock_vertical_lift_server_env + :alt: OCA/stock-logistics-warehouse +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-14-0/stock-logistics-warehouse-14-0-stock_vertical_lift_server_env + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/153/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Adds OCA Server Environment features to Stock Vertical Lift. + +.. IMPORTANT:: + This is an alpha version, the data model and design can change at any time without warning. + Only for development or testing purpose, do not use in production. + `More details on development status `_ + +**Table of contents** + +.. contents:: + :local: + +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 +~~~~~~~ + +* Camptocamp + +Contributors +~~~~~~~~~~~~ + +* Guewen Baconnier +* `Trobz `_: + * nguyenhk + +Other credits +~~~~~~~~~~~~~ + +The migration of this module from 13.0 to 14.0 was financially supported by Camptocamp + +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. + +This module is part of the `OCA/stock-logistics-warehouse `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/stock_vertical_lift_server_env/__init__.py b/stock_vertical_lift_server_env/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/stock_vertical_lift_server_env/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/stock_vertical_lift_server_env/__manifest__.py b/stock_vertical_lift_server_env/__manifest__.py new file mode 100644 index 000000000..84dcfad39 --- /dev/null +++ b/stock_vertical_lift_server_env/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2020 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Vertical Lift - Server Environment", + "summary": "Server Environment layer for Vertical Lift", + "version": "14.0.1.0.0", + "category": "Stock", + "author": "Camptocamp, Odoo Community Association (OCA)", + "license": "AGPL-3", + "depends": ["stock_vertical_lift", "server_environment"], # OCA/server-env + "website": "https://github.com/OCA/stock-logistics-warehouse", + "data": [], + "installable": True, + "auto_install": True, + "development_status": "Alpha", +} diff --git a/stock_vertical_lift_server_env/i18n/stock_vertical_lift_server_env.pot b/stock_vertical_lift_server_env/i18n/stock_vertical_lift_server_env.pot new file mode 100644 index 000000000..5f5e07928 --- /dev/null +++ b/stock_vertical_lift_server_env/i18n/stock_vertical_lift_server_env.pot @@ -0,0 +1,19 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_vertical_lift_server_env +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: stock_vertical_lift_server_env +#: model:ir.model,name:stock_vertical_lift_server_env.model_vertical_lift_shuttle +msgid "Vertical Lift Shuttle" +msgstr "" diff --git a/stock_vertical_lift_server_env/models/__init__.py b/stock_vertical_lift_server_env/models/__init__.py new file mode 100644 index 000000000..e99db92f6 --- /dev/null +++ b/stock_vertical_lift_server_env/models/__init__.py @@ -0,0 +1 @@ +from . import vertical_lift_shuttle diff --git a/stock_vertical_lift_server_env/models/vertical_lift_shuttle.py b/stock_vertical_lift_server_env/models/vertical_lift_shuttle.py new file mode 100644 index 000000000..2600c8040 --- /dev/null +++ b/stock_vertical_lift_server_env/models/vertical_lift_shuttle.py @@ -0,0 +1,24 @@ +# Copyright 2020 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models + + +class VerticalLiftShuttle(models.Model): + _name = "vertical.lift.shuttle" + _inherit = ["vertical.lift.shuttle", "server.env.mixin"] + + @property + def _server_env_fields(self): + base_fields = super()._server_env_fields + sftp_fields = { + "hardware": {"compute_default": "_compute_default_hardware"}, + "server": {}, + "port": {}, + "use_tls": {}, + } + sftp_fields.update(base_fields) + return sftp_fields + + def _compute_default_hardware(self): + self.update({"hardware": "simulation"}) diff --git a/stock_vertical_lift_server_env/readme/CONTRIBUTORS.rst b/stock_vertical_lift_server_env/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..60ead71f6 --- /dev/null +++ b/stock_vertical_lift_server_env/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* Guewen Baconnier +* `Trobz `_: + * nguyenhk diff --git a/stock_vertical_lift_server_env/readme/CREDITS.rst b/stock_vertical_lift_server_env/readme/CREDITS.rst new file mode 100644 index 000000000..f37ebe757 --- /dev/null +++ b/stock_vertical_lift_server_env/readme/CREDITS.rst @@ -0,0 +1 @@ +The migration of this module from 13.0 to 14.0 was financially supported by Camptocamp diff --git a/stock_vertical_lift_server_env/readme/DESCRIPTION.rst b/stock_vertical_lift_server_env/readme/DESCRIPTION.rst new file mode 100644 index 000000000..a2c3ba446 --- /dev/null +++ b/stock_vertical_lift_server_env/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +Adds OCA Server Environment features to Stock Vertical Lift. diff --git a/stock_vertical_lift_server_env/static/description/icon.png b/stock_vertical_lift_server_env/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/stock_vertical_lift_server_env/static/description/icon.png differ diff --git a/stock_vertical_lift_server_env/static/description/index.html b/stock_vertical_lift_server_env/static/description/index.html new file mode 100644 index 000000000..25e4857c2 --- /dev/null +++ b/stock_vertical_lift_server_env/static/description/index.html @@ -0,0 +1,438 @@ + + + + + + +Vertical Lift - Server Environment + + + +
+

Vertical Lift - Server Environment

+ + +

Alpha License: AGPL-3 OCA/stock-logistics-warehouse Translate me on Weblate Try me on Runbot

+

Adds OCA Server Environment features to Stock Vertical Lift.

+
+

Important

+

This is an alpha version, the data model and design can change at any time without warning. +Only for development or testing purpose, do not use in production. +More details on development status

+
+

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

+
    +
  • Camptocamp
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+

The migration of this module from 13.0 to 14.0 was financially supported by Camptocamp

+
+
+

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/stock-logistics-warehouse project on GitHub.

+

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

+
+
+
+ +