From 5793dc4ed2a0f4f8245fa99d94bbc66cb5708bb1 Mon Sep 17 00:00:00 2001 From: Jacques-Etienne Baudoux Date: Tue, 24 Jun 2025 10:31:16 +0200 Subject: [PATCH] [ADD] website_sale_product_public_category_searchpanel --- .../README.rst | 77 ++++ .../__init__.py | 0 .../__manifest__.py | 16 + .../pyproject.toml | 3 + .../readme/CONTRIBUTORS.md | 1 + .../readme/DESCRIPTION.md | 2 + .../static/description/index.html | 424 ++++++++++++++++++ .../views/product_public_category_views.xml | 28 ++ 8 files changed, 551 insertions(+) create mode 100644 website_sale_product_public_category_searchpanel/README.rst create mode 100644 website_sale_product_public_category_searchpanel/__init__.py create mode 100644 website_sale_product_public_category_searchpanel/__manifest__.py create mode 100644 website_sale_product_public_category_searchpanel/pyproject.toml create mode 100644 website_sale_product_public_category_searchpanel/readme/CONTRIBUTORS.md create mode 100644 website_sale_product_public_category_searchpanel/readme/DESCRIPTION.md create mode 100644 website_sale_product_public_category_searchpanel/static/description/index.html create mode 100644 website_sale_product_public_category_searchpanel/views/product_public_category_views.xml diff --git a/website_sale_product_public_category_searchpanel/README.rst b/website_sale_product_public_category_searchpanel/README.rst new file mode 100644 index 0000000000..d96c52e3bb --- /dev/null +++ b/website_sale_product_public_category_searchpanel/README.rst @@ -0,0 +1,77 @@ +==================================== +Product public category Search panel +==================================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:b9e4d313bc036276fc48d47dc2feadb3931434c3cf8897951620af315ddeb02e + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/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%2Fe--commerce-lightgray.png?logo=github + :target: https://github.com/OCA/e-commerce/tree/18.0/website_sale_product_public_category_searchpanel + :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-18-0/e-commerce-18-0-website_sale_product_public_category_searchpanel + :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=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Add a search panel on the ecommerce category list view to help navigate +across categories. + +**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 +------- + +* BCIM + +Contributors +------------ + +- Jacques-Etienne Baudoux (BCIM) + +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_public_category_searchpanel/__init__.py b/website_sale_product_public_category_searchpanel/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/website_sale_product_public_category_searchpanel/__manifest__.py b/website_sale_product_public_category_searchpanel/__manifest__.py new file mode 100644 index 0000000000..63d32b997b --- /dev/null +++ b/website_sale_product_public_category_searchpanel/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2025 Jacques-Etienne Baudoux (BCIM) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Product public category Search panel", + "category": "e-commerce", + "author": "BCIM, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/e-commerce", + "version": "18.0.1.0.0", + "license": "AGPL-3", + "depends": ["website_sale"], + "data": [ + "views/product_public_category_views.xml", + ], + "installable": True, +} diff --git a/website_sale_product_public_category_searchpanel/pyproject.toml b/website_sale_product_public_category_searchpanel/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/website_sale_product_public_category_searchpanel/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/website_sale_product_public_category_searchpanel/readme/CONTRIBUTORS.md b/website_sale_product_public_category_searchpanel/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..1bc48d2f36 --- /dev/null +++ b/website_sale_product_public_category_searchpanel/readme/CONTRIBUTORS.md @@ -0,0 +1 @@ +- Jacques-Etienne Baudoux (BCIM) \<\> diff --git a/website_sale_product_public_category_searchpanel/readme/DESCRIPTION.md b/website_sale_product_public_category_searchpanel/readme/DESCRIPTION.md new file mode 100644 index 0000000000..e8e14b9ab0 --- /dev/null +++ b/website_sale_product_public_category_searchpanel/readme/DESCRIPTION.md @@ -0,0 +1,2 @@ +Add a search panel on the ecommerce category list view to help navigate across +categories. diff --git a/website_sale_product_public_category_searchpanel/static/description/index.html b/website_sale_product_public_category_searchpanel/static/description/index.html new file mode 100644 index 0000000000..07313c4726 --- /dev/null +++ b/website_sale_product_public_category_searchpanel/static/description/index.html @@ -0,0 +1,424 @@ + + + + + +Product public category Search panel + + + +
+

Product public category Search panel

+ + +

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

+

Add a search panel on the ecommerce category list view to help navigate +across categories.

+

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

+
    +
  • BCIM
  • +
+
+
+

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_public_category_searchpanel/views/product_public_category_views.xml b/website_sale_product_public_category_searchpanel/views/product_public_category_views.xml new file mode 100644 index 0000000000..a7ca483c3c --- /dev/null +++ b/website_sale_product_public_category_searchpanel/views/product_public_category_views.xml @@ -0,0 +1,28 @@ + + + + product.public.category + + + + + + + + + + + + product.public.category + + + + + + + + + + + +