diff --git a/README.md b/README.md index 915c59ded9..5dc4d6de64 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,9 @@ addon | version | maintainers | summary [website_sale_product_description](website_sale_product_description/) | 17.0.1.0.0 | | Shows custom e-Commerce description for products [website_sale_product_detail_attribute_image](website_sale_product_detail_attribute_image/) | 17.0.1.0.0 | | Display attributes images in shop product detail [website_sale_product_matrix](website_sale_product_matrix/) | 17.0.1.0.1 | pilarvargas-tecnativa | Product matrix in eCommerce +[website_sale_product_matrix_hide_price](website_sale_product_matrix_hide_price/) | 17.0.1.0.0 | | Hide product prices on the shop [website_sale_product_minimal_price](website_sale_product_minimal_price/) | 17.0.1.0.0 | sergio-teruel | Display minimal price for products that has variants +[website_sale_product_minimal_price_hide_price](website_sale_product_minimal_price_hide_price/) | 17.0.1.0.0 | | Hide the product price scale when website prices are hidden [website_sale_product_multi_website](website_sale_product_multi_website/) | 17.0.1.0.1 | | Show products in many websites [website_sale_product_reference_displayed](website_sale_product_reference_displayed/) | 17.0.1.0.0 | | Display product reference in e-commerce [website_sale_require_legal](website_sale_require_legal/) | 17.0.1.0.0 | | Force the user to accept legal tems to buy in the web shop diff --git a/setup/_metapackage/pyproject.toml b/setup/_metapackage/pyproject.toml index ae7fb8a688..382f4d6869 100644 --- a/setup/_metapackage/pyproject.toml +++ b/setup/_metapackage/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "odoo-addons-oca-e-commerce" -version = "17.0.20260505.0" +version = "17.0.20260605.1" dependencies = [ "odoo-addon-website_sale_b2x_alt_price>=17.0dev,<17.1dev", "odoo-addon-website_sale_barcode_search>=17.0dev,<17.1dev", @@ -20,7 +20,9 @@ dependencies = [ "odoo-addon-website_sale_product_description>=17.0dev,<17.1dev", "odoo-addon-website_sale_product_detail_attribute_image>=17.0dev,<17.1dev", "odoo-addon-website_sale_product_matrix>=17.0dev,<17.1dev", + "odoo-addon-website_sale_product_matrix_hide_price>=17.0dev,<17.1dev", "odoo-addon-website_sale_product_minimal_price>=17.0dev,<17.1dev", + "odoo-addon-website_sale_product_minimal_price_hide_price>=17.0dev,<17.1dev", "odoo-addon-website_sale_product_multi_website>=17.0dev,<17.1dev", "odoo-addon-website_sale_product_reference_displayed>=17.0dev,<17.1dev", "odoo-addon-website_sale_require_legal>=17.0dev,<17.1dev", diff --git a/website_sale_product_matrix_hide_price/README.rst b/website_sale_product_matrix_hide_price/README.rst new file mode 100644 index 0000000000..b29979c120 --- /dev/null +++ b/website_sale_product_matrix_hide_price/README.rst @@ -0,0 +1,83 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +====================================== +Website Sale Product Matrix Hide Price +====================================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:653443f3794f7744080a56ee73db4f9b64d252cae1c618462c62b281a95c5be6 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/license-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%2Fe--commerce-lightgray.png?logo=github + :target: https://github.com/OCA/e-commerce/tree/17.0/website_sale_product_matrix_hide_price + :alt: OCA/e-commerce +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/e-commerce-17-0/e-commerce-17-0-website_sale_product_matrix_hide_price + :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/e-commerce&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module extends the base of website_sale_hide_price to hide prices +in the product matrix views as well. + +**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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Tecnativa + +Contributors +------------ + +- `Tecnativa `__: + + - Pilar Vargas + +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/e-commerce `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/website_sale_product_matrix_hide_price/__init__.py b/website_sale_product_matrix_hide_price/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/website_sale_product_matrix_hide_price/__manifest__.py b/website_sale_product_matrix_hide_price/__manifest__.py new file mode 100644 index 0000000000..7ef310cc83 --- /dev/null +++ b/website_sale_product_matrix_hide_price/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2026 Tecnativa - Pilar Vargas +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "Website Sale Product Matrix Hide Price", + "version": "17.0.1.0.0", + "category": "Website", + "author": "Tecnativa, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/e-commerce", + "license": "AGPL-3", + "summary": "Hide product prices on the shop", + "depends": ["website_sale_hide_price", "website_sale_product_matrix"], + "data": ["views/website_sale_templates.xml"], + "installable": True, + "auto_install": True, +} diff --git a/website_sale_product_matrix_hide_price/i18n/website_sale_product_matrix_hide_price.pot b/website_sale_product_matrix_hide_price/i18n/website_sale_product_matrix_hide_price.pot new file mode 100644 index 0000000000..716a0702d8 --- /dev/null +++ b/website_sale_product_matrix_hide_price/i18n/website_sale_product_matrix_hide_price.pot @@ -0,0 +1,13 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.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" diff --git a/website_sale_product_matrix_hide_price/pyproject.toml b/website_sale_product_matrix_hide_price/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/website_sale_product_matrix_hide_price/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/website_sale_product_matrix_hide_price/readme/CONTRIBUTORS.md b/website_sale_product_matrix_hide_price/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..5012e890b9 --- /dev/null +++ b/website_sale_product_matrix_hide_price/readme/CONTRIBUTORS.md @@ -0,0 +1,2 @@ +- [Tecnativa](https://www.tecnativa.com/): + - Pilar Vargas diff --git a/website_sale_product_matrix_hide_price/readme/DESCRIPTION.md b/website_sale_product_matrix_hide_price/readme/DESCRIPTION.md new file mode 100644 index 0000000000..71f3d7296a --- /dev/null +++ b/website_sale_product_matrix_hide_price/readme/DESCRIPTION.md @@ -0,0 +1,2 @@ +This module extends the base of website_sale_hide_price to hide prices +in the product matrix views as well. diff --git a/website_sale_product_matrix_hide_price/static/description/icon.png b/website_sale_product_matrix_hide_price/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/website_sale_product_matrix_hide_price/static/description/icon.png differ diff --git a/website_sale_product_matrix_hide_price/static/description/index.html b/website_sale_product_matrix_hide_price/static/description/index.html new file mode 100644 index 0000000000..3b2aaa202a --- /dev/null +++ b/website_sale_product_matrix_hide_price/static/description/index.html @@ -0,0 +1,433 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Website Sale Product Matrix Hide Price

+ +

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

+

This module extends the base of website_sale_hide_price to hide prices +in the product matrix views as well.

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

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.

+

This module is part of the OCA/e-commerce project on GitHub.

+

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

+
+
+
+
+ + diff --git a/website_sale_product_matrix_hide_price/tests/__init__.py b/website_sale_product_matrix_hide_price/tests/__init__.py new file mode 100644 index 0000000000..e174d77a80 --- /dev/null +++ b/website_sale_product_matrix_hide_price/tests/__init__.py @@ -0,0 +1 @@ +from . import test_website_sale_product_matrix_hide_price diff --git a/website_sale_product_matrix_hide_price/tests/test_website_sale_product_matrix_hide_price.py b/website_sale_product_matrix_hide_price/tests/test_website_sale_product_matrix_hide_price.py new file mode 100644 index 0000000000..97c0d66702 --- /dev/null +++ b/website_sale_product_matrix_hide_price/tests/test_website_sale_product_matrix_hide_price.py @@ -0,0 +1,91 @@ +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl) +# Copyright 2026 Tecnativa - Pilar Vargas + +from odoo import Command +from odoo.tests import HttpCase, tagged + +from odoo.addons.http_routing.models.ir_http import slug + + +@tagged("post_install", "-at_install") +class TestWebsiteSaleProductMatrixHidePrice(HttpCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.attr_color = cls.env["product.attribute"].create({"name": "Color"}) + cls.attr_size = cls.env["product.attribute"].create({"name": "Size"}) + cls.color_red = cls.env["product.attribute.value"].create( + { + "name": "Red", + "attribute_id": cls.attr_color.id, + } + ) + cls.color_blue = cls.env["product.attribute.value"].create( + { + "name": "Blue", + "attribute_id": cls.attr_color.id, + } + ) + cls.size_s = cls.env["product.attribute.value"].create( + { + "name": "S", + "attribute_id": cls.attr_size.id, + } + ) + cls.size_m = cls.env["product.attribute.value"].create( + { + "name": "M", + "attribute_id": cls.attr_size.id, + } + ) + cls.product = cls.env["product.template"].create( + { + "name": "Matrix Product", + "sale_ok": True, + "is_published": True, + "list_price": 10.0, + "product_add_mode": "matrix", + "attribute_line_ids": [ + Command.create( + { + "attribute_id": cls.attr_color.id, + "value_ids": [ + Command.set( + [ + cls.color_red.id, + cls.color_blue.id, + ] + ), + ], + } + ), + Command.create( + { + "attribute_id": cls.attr_size.id, + "value_ids": [ + Command.set( + [ + cls.size_s.id, + cls.size_m.id, + ] + ), + ], + } + ), + ], + } + ) + + def _get_product_page(self): + response = self.url_open(f"/shop/product/{slug(self.product)}") + return response.text + + def test_matrix_add_to_cart_button_is_shown_when_price_is_visible(self): + self.product.website_hide_price = False + html = self._get_product_page() + self.assertIn('href="#modalMatrix"', html) + + def test_matrix_add_to_cart_button_is_hidden_when_price_is_hidden(self): + self.product.website_hide_price = True + html = self._get_product_page() + self.assertNotIn('href="#modalMatrix"', html) diff --git a/website_sale_product_matrix_hide_price/views/website_sale_templates.xml b/website_sale_product_matrix_hide_price/views/website_sale_templates.xml new file mode 100644 index 0000000000..710cf95c2c --- /dev/null +++ b/website_sale_product_matrix_hide_price/views/website_sale_templates.xml @@ -0,0 +1,10 @@ + + + + diff --git a/website_sale_product_minimal_price_hide_price/README.rst b/website_sale_product_minimal_price_hide_price/README.rst new file mode 100644 index 0000000000..21782b99f5 --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/README.rst @@ -0,0 +1,86 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +============================================= +Website Sale Product Minimal Price Hide Price +============================================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:e5b4c2932f304cb7be4d371c85099933637e6d1ac2266448e4cfc2d53240c378 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/license-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%2Fe--commerce-lightgray.png?logo=github + :target: https://github.com/OCA/e-commerce/tree/17.0/website_sale_product_minimal_price_hide_price + :alt: OCA/e-commerce +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/e-commerce-17-0/e-commerce-17-0-website_sale_product_minimal_price_hide_price + :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/e-commerce&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module makes ``website_sale_product_minimal_price`` compatible with +``website_sale_hide_price``. + +When prices are hidden, the price scale displayed on the product page is +also hidden. + +**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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Tecnativa + +Contributors +------------ + +- `Tecnativa `__: + + - Pilar Vargas + +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/e-commerce `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/website_sale_product_minimal_price_hide_price/__init__.py b/website_sale_product_minimal_price_hide_price/__init__.py new file mode 100644 index 0000000000..31660d6a96 --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import models diff --git a/website_sale_product_minimal_price_hide_price/__manifest__.py b/website_sale_product_minimal_price_hide_price/__manifest__.py new file mode 100644 index 0000000000..f7bbe8f83d --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2026 Tecnativa - Pilar Vargas +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "Website Sale Product Minimal Price Hide Price", + "summary": "Hide the product price scale when website prices are hidden", + "version": "17.0.1.0.0", + "category": "Website", + "website": "https://github.com/OCA/e-commerce", + "author": "Tecnativa, Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "auto_install": True, + "depends": [ + "website_sale_hide_price", + "website_sale_product_minimal_price", + ], +} diff --git a/website_sale_product_minimal_price_hide_price/i18n/website_sale_product_minimal_price_hide_price.pot b/website_sale_product_minimal_price_hide_price/i18n/website_sale_product_minimal_price_hide_price.pot new file mode 100644 index 0000000000..2369d1dcb1 --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/i18n/website_sale_product_minimal_price_hide_price.pot @@ -0,0 +1,19 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_minimal_price_hide_price +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.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: website_sale_product_minimal_price_hide_price +#: model:ir.model,name:website_sale_product_minimal_price_hide_price.model_product_template +msgid "Product" +msgstr "" diff --git a/website_sale_product_minimal_price_hide_price/models/__init__.py b/website_sale_product_minimal_price_hide_price/models/__init__.py new file mode 100644 index 0000000000..e8fa8f6bf1 --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/models/__init__.py @@ -0,0 +1 @@ +from . import product_template diff --git a/website_sale_product_minimal_price_hide_price/models/product_template.py b/website_sale_product_minimal_price_hide_price/models/product_template.py new file mode 100644 index 0000000000..a07a4fe65f --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/models/product_template.py @@ -0,0 +1,33 @@ +# Copyright 2026 Tecnativa - Pilar Vargas +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models + + +class ProductTemplate(models.Model): + _inherit = "product.template" + + def _get_combination_info( + self, + combination=False, + product_id=False, + add_qty=1, + parent_combination=False, + only_template=False, + ): + combination_info = super()._get_combination_info( + combination=combination, + product_id=product_id, + add_qty=add_qty, + parent_combination=parent_combination, + only_template=only_template, + ) + website = self.env["website"].get_current_website() + hide_price = ( + website.website_hide_price + or not self.env.user.partner_id.website_show_price + or combination_info.get("website_hide_price", False) + ) + if hide_price: + combination_info["minimal_price_scale"] = [] + return combination_info diff --git a/website_sale_product_minimal_price_hide_price/pyproject.toml b/website_sale_product_minimal_price_hide_price/pyproject.toml new file mode 100644 index 0000000000..610783ed36 --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/pyproject.toml @@ -0,0 +1,6 @@ +[project] +name = "odoo-addon-website-sale-product-minimal-price-hide-price" + +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/website_sale_product_minimal_price_hide_price/readme/CONTRIBUTORS.md b/website_sale_product_minimal_price_hide_price/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..5012e890b9 --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/readme/CONTRIBUTORS.md @@ -0,0 +1,2 @@ +- [Tecnativa](https://www.tecnativa.com/): + - Pilar Vargas diff --git a/website_sale_product_minimal_price_hide_price/readme/DESCRIPTION.md b/website_sale_product_minimal_price_hide_price/readme/DESCRIPTION.md new file mode 100644 index 0000000000..1e585888b8 --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/readme/DESCRIPTION.md @@ -0,0 +1,5 @@ +This module makes `website_sale_product_minimal_price` compatible with +`website_sale_hide_price`. + +When prices are hidden, the price scale displayed on the product page is +also hidden. diff --git a/website_sale_product_minimal_price_hide_price/static/description/icon.png b/website_sale_product_minimal_price_hide_price/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/website_sale_product_minimal_price_hide_price/static/description/icon.png differ diff --git a/website_sale_product_minimal_price_hide_price/static/description/index.html b/website_sale_product_minimal_price_hide_price/static/description/index.html new file mode 100644 index 0000000000..2e38d91e1d --- /dev/null +++ b/website_sale_product_minimal_price_hide_price/static/description/index.html @@ -0,0 +1,435 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Website Sale Product Minimal Price Hide Price

+ +

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

+

This module makes website_sale_product_minimal_price compatible with +website_sale_hide_price.

+

When prices are hidden, the price scale displayed on the product page is +also hidden.

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

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.

+

This module is part of the OCA/e-commerce project on GitHub.

+

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

+
+
+
+
+ +