From e08f0fc6a6adf41dcd1d3424f29f254c739cb505 Mon Sep 17 00:00:00 2001 From: Jasper Jumelet Date: Thu, 9 Mar 2023 11:57:48 +0100 Subject: [PATCH] [16.0][MIG] web_action_conditionable: Migration to 16.0 --- .../odoo/addons/web_action_conditionable | 1 + setup/web_action_conditionable/setup.py | 6 +++ web_action_conditionable/README.rst | 22 ++++++--- web_action_conditionable/__manifest__.py | 4 +- .../readme/CONTRIBUTORS.rst | 3 ++ web_action_conditionable/readme/CREDITS.rst | 1 + .../static/description/index.html | 26 +++++++--- .../src/components/field_one2many.esm.js | 37 ++++++++++++++ .../static/src/js/field_one2many.js | 49 ------------------- 9 files changed, 85 insertions(+), 64 deletions(-) create mode 120000 setup/web_action_conditionable/odoo/addons/web_action_conditionable create mode 100644 setup/web_action_conditionable/setup.py create mode 100644 web_action_conditionable/readme/CREDITS.rst create mode 100644 web_action_conditionable/static/src/components/field_one2many.esm.js delete mode 100644 web_action_conditionable/static/src/js/field_one2many.js diff --git a/setup/web_action_conditionable/odoo/addons/web_action_conditionable b/setup/web_action_conditionable/odoo/addons/web_action_conditionable new file mode 120000 index 000000000..048ff8cb6 --- /dev/null +++ b/setup/web_action_conditionable/odoo/addons/web_action_conditionable @@ -0,0 +1 @@ +../../../../web_action_conditionable \ No newline at end of file diff --git a/setup/web_action_conditionable/setup.py b/setup/web_action_conditionable/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/web_action_conditionable/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/web_action_conditionable/README.rst b/web_action_conditionable/README.rst index a57f528ff..6cd599a89 100644 --- a/web_action_conditionable/README.rst +++ b/web_action_conditionable/README.rst @@ -14,14 +14,14 @@ web_action_conditionable :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github - :target: https://github.com/OCA/web/tree/15.0/web_action_conditionable + :target: https://github.com/OCA/web/tree/16.0/web_action_conditionable :alt: OCA/web .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_action_conditionable + :target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_action_conditionable :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/162/15.0 - :alt: Try me on Runbot +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/webui/builds.html?repo=OCA/web&target_branch=16.0 + :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -55,7 +55,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 smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -74,6 +74,14 @@ Contributors * André Paramés (https://www.acsone.eu/) * Alexandre Díaz * Sudhir Arya +* Jasper Jumelet +* `Trobz `_: + * Nguyễn Minh Chiến + +Other credits +~~~~~~~~~~~~~ + +The migration of this module from 15.0 to 16.0 was financially supported by Camptocamp Maintainers ~~~~~~~~~~~ @@ -88,6 +96,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/web `_ project on GitHub. +This module is part of the `OCA/web `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/web_action_conditionable/__manifest__.py b/web_action_conditionable/__manifest__.py index 7a528a6a4..1eee3d4da 100644 --- a/web_action_conditionable/__manifest__.py +++ b/web_action_conditionable/__manifest__.py @@ -1,7 +1,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "web_action_conditionable", - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "depends": ["base", "web"], "data": [], "author": "Cristian Salamea,Odoo Community Association (OCA)", @@ -9,7 +9,7 @@ "license": "AGPL-3", "assets": { "web.assets_backend": [ - "web_action_conditionable/static/src/js/field_one2many.js", + "web_action_conditionable/static/src/components/*", ], }, "installable": True, diff --git a/web_action_conditionable/readme/CONTRIBUTORS.rst b/web_action_conditionable/readme/CONTRIBUTORS.rst index 8b78fc291..2006ed47e 100644 --- a/web_action_conditionable/readme/CONTRIBUTORS.rst +++ b/web_action_conditionable/readme/CONTRIBUTORS.rst @@ -2,3 +2,6 @@ * André Paramés (https://www.acsone.eu/) * Alexandre Díaz * Sudhir Arya +* Jasper Jumelet +* `Trobz `_: + * Nguyễn Minh Chiến diff --git a/web_action_conditionable/readme/CREDITS.rst b/web_action_conditionable/readme/CREDITS.rst new file mode 100644 index 000000000..70bc307ad --- /dev/null +++ b/web_action_conditionable/readme/CREDITS.rst @@ -0,0 +1 @@ +The migration of this module from 15.0 to 16.0 was financially supported by Camptocamp diff --git a/web_action_conditionable/static/description/index.html b/web_action_conditionable/static/description/index.html index 2b6d26f51..49d1e89be 100644 --- a/web_action_conditionable/static/description/index.html +++ b/web_action_conditionable/static/description/index.html @@ -3,7 +3,7 @@ - + web_action_conditionable