diff --git a/multisearch_field/README.rst b/multisearch_field/README.rst new file mode 100644 index 0000000000..1be2ac1f3d --- /dev/null +++ b/multisearch_field/README.rst @@ -0,0 +1,112 @@ +================================ +Field MultiSearch with separator +================================ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:4e881a9a949e292e686e878b42bcb228e59c8ba22eca33e3cf454f32c9b95e96 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fserver--ux-lightgray.png?logo=github + :target: https://github.com/OCA/server-ux/tree/16.0/multisearch_field + :alt: OCA/server-ux +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/server-ux-16-0/server-ux-16-0-multisearch_field + :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/server-ux&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows mulit_searching for all search. +For that, it add code before the search function. + +It will allow you to search for multiple values separated by the character you +have configured. +* It will split the value like this: +[("name", "ilike","/Hart|perry;kelly")] => ['|', '|', '|', '|', '|' ("name", "ilike","Hart|perry;kelly"), ("name", "ilike","Hart|perry"), ("name", "ilike","Hart"), ("name", "ilike","perry;kelly"), ("name", "ilike","kelly"), ("name", "ilike","kelly"), ("name", "ilike", "/Hart|perry;kelly")] + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To configure the separator you must: + * be in dev_mode + * go to Settings / technical / system parameter + * search multi_search_separator + * add/rm the separator + * available separators must be set like this : \|; for "|" and ";" + +Usage +===== + +To use mulit_search you must put an "/" before the value you want to search. +like this "/Kelly perry hart" +Do not put a separator between the first value and "/". + +* Before: + searching "/kelly|perry;hart" in employee, will give a none result. + +.. image:: https://raw.githubusercontent.com/OCA/server-ux/16.0/multisearch_field/static/description/img/Before_multi_search.png + +* After: + Searching "/kelly|perry;hart" in employee, will give "Kelly", "Perry" + and "Hart" + +.. image:: https://raw.githubusercontent.com/OCA/server-ux/16.0/multisearch_field/static/description/img/After_multi_search.png + +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 +~~~~~~~ + +* Akretion + +Contributors +~~~~~~~~~~~~ + +* Akretion + * Thomas BONNERUE + * Benoit GUILLOT + +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/server-ux `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/multisearch_field/__init__.py b/multisearch_field/__init__.py new file mode 100644 index 0000000000..9a919f5235 --- /dev/null +++ b/multisearch_field/__init__.py @@ -0,0 +1 @@ +from . import monkeypatching diff --git a/multisearch_field/__manifest__.py b/multisearch_field/__manifest__.py new file mode 100644 index 0000000000..385f025141 --- /dev/null +++ b/multisearch_field/__manifest__.py @@ -0,0 +1,15 @@ +{ + "name": "Field MultiSearch with separator", + "license": "AGPL-3", + "summary": "add modification on search to search multi_value with separator", + "version": "16.0.1.0.0", + "author": "Akretion, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/server-ux", + "depends": [ + "base", + ], + "application": False, + "data": [ + "data/multi_search_data.xml", + ], +} diff --git a/multisearch_field/data/multi_search_data.xml b/multisearch_field/data/multi_search_data.xml new file mode 100644 index 0000000000..6031f544fe --- /dev/null +++ b/multisearch_field/data/multi_search_data.xml @@ -0,0 +1,6 @@ + + + multi_search_separator + |; , + + diff --git a/multisearch_field/monkeypatching.py b/multisearch_field/monkeypatching.py new file mode 100644 index 0000000000..4313926e02 --- /dev/null +++ b/multisearch_field/monkeypatching.py @@ -0,0 +1,54 @@ +# Copyright 2024 Akretion (http://www.akretion.com). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import re + +from odoo.models import BaseModel +from odoo.osv import expression + +search_original = BaseModel.search + + +def search(self, domain, offset=0, limit=None, order=None, count=False): + """Override of the Python method to remove the dependency of the unit + fields""" + if self.env["ir.model.access"].check_access_rights("read", raise_exception=False): + list_separator = self.env["ir.config_parameter"].get_param( + "multi_search_separator" + ) + else: + list_separator = False + if not list_separator or not domain: + return search_original(self, domain, offset, limit, order, count) + + domain_list = [] + domain_value = [] + nlist_sep = [] + for sep in list_separator: + nlist_sep.append(sep) + for dom in domain: + if ( + len(dom) == 3 + and isinstance(dom[2], str) + and dom[2].startswith("/") + and any(separator in dom[2] for separator in list_separator) + ): + text_search = dom[2].replace("/", "", 1) + value_list = re.split("{}".format(nlist_sep), text_search) + value_list.append(text_search) + value_list.append(dom[2]) + value_list_set = set(value_list) + for separator in list_separator: + value_list_set = value_list_set.union(text_search.split(separator)) + for value in value_list_set: + domain_search_field = [(dom[0], dom[1], value)] + domain_value.append(domain_search_field) + else: + domain_list.append(dom) + if domain_value: + domain_list = expression.OR(domain_value) + res = search_original(self, domain_list, offset, limit, order, count) + return res + + +BaseModel.search = search diff --git a/multisearch_field/readme/CONFIGURE.rst b/multisearch_field/readme/CONFIGURE.rst new file mode 100644 index 0000000000..a179fe080b --- /dev/null +++ b/multisearch_field/readme/CONFIGURE.rst @@ -0,0 +1,6 @@ +To configure the separator you must: + * be in dev_mode + * go to Settings / technical / system parameter + * search multi_search_separator + * add/rm the separator + * available separators must be set like this : \|; for "|" and ";" diff --git a/multisearch_field/readme/CONTRIBUTORS.rst b/multisearch_field/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000000..4c5a6b7590 --- /dev/null +++ b/multisearch_field/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* Akretion + * Thomas BONNERUE + * Benoit GUILLOT diff --git a/multisearch_field/readme/DESCRIPTION.rst b/multisearch_field/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..d320a6b4ed --- /dev/null +++ b/multisearch_field/readme/DESCRIPTION.rst @@ -0,0 +1,7 @@ +This module allows mulit_searching for all search. +For that, it add code before the search function. + +It will allow you to search for multiple values separated by the character you +have configured. +* It will split the value like this: +[("name", "ilike","/Hart|perry;kelly")] => ['|', '|', '|', '|', '|' ("name", "ilike","Hart|perry;kelly"), ("name", "ilike","Hart|perry"), ("name", "ilike","Hart"), ("name", "ilike","perry;kelly"), ("name", "ilike","kelly"), ("name", "ilike","kelly"), ("name", "ilike", "/Hart|perry;kelly")] diff --git a/multisearch_field/readme/USAGE.rst b/multisearch_field/readme/USAGE.rst new file mode 100644 index 0000000000..dbf4672cf3 --- /dev/null +++ b/multisearch_field/readme/USAGE.rst @@ -0,0 +1,14 @@ +To use mulit_search you must put an "/" before the value you want to search. +like this "/Kelly perry hart" +Do not put a separator between the first value and "/". + +* Before: + searching "/kelly|perry;hart" in employee, will give a none result. + +.. image:: ../static/description/img/Before_multi_search.png + +* After: + Searching "/kelly|perry;hart" in employee, will give "Kelly", "Perry" + and "Hart" + +.. image:: ../static/description/img/After_multi_search.png diff --git a/multisearch_field/static/description/img/After_multi_search.png b/multisearch_field/static/description/img/After_multi_search.png new file mode 100644 index 0000000000..d3f43fb008 Binary files /dev/null and b/multisearch_field/static/description/img/After_multi_search.png differ diff --git a/multisearch_field/static/description/img/Before_multi_search.png b/multisearch_field/static/description/img/Before_multi_search.png new file mode 100644 index 0000000000..7a8cbf0260 Binary files /dev/null and b/multisearch_field/static/description/img/Before_multi_search.png differ diff --git a/multisearch_field/static/description/index.html b/multisearch_field/static/description/index.html new file mode 100644 index 0000000000..1bcf459c8c --- /dev/null +++ b/multisearch_field/static/description/index.html @@ -0,0 +1,469 @@ + + + + + +Field MultiSearch with separator + + + +
+

Field MultiSearch with separator

+ + +

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

+

This module allows mulit_searching for all search. +For that, it add code before the search function.

+

It will allow you to search for multiple values separated by the character you +have configured. +* It will split the value like this: +[(“name”, “ilike”,”/Hart|perry;kelly”)] => [‘|’, ‘|’, ‘|’, ‘|’, ‘|’ (“name”, “ilike”,”Hart|perry;kelly”), (“name”, “ilike”,”Hart|perry”), (“name”, “ilike”,”Hart”), (“name”, “ilike”,”perry;kelly”), (“name”, “ilike”,”kelly”), (“name”, “ilike”,”kelly”), (“name”, “ilike”, “/Hart|perry;kelly”)]

+

Table of contents

+ +
+

Configuration

+
+
To configure the separator you must:
+
    +
  • be in dev_mode
  • +
  • go to Settings / technical / system parameter
  • +
  • search multi_search_separator
  • +
  • add/rm the separator
  • +
  • available separators must be set like this : |; for “|” and “;”
  • +
+
+
+
+
+

Usage

+

To use mulit_search you must put an “/” before the value you want to search. +like this “/Kelly perry hart” +Do not put a separator between the first value and “/”.

+
    +
  • Before: +searching “/kelly|perry;hart” in employee, will give a none result.
  • +
+https://raw.githubusercontent.com/OCA/server-ux/16.0/multisearch_field/static/description/img/Before_multi_search.png +
    +
  • After: +Searching “/kelly|perry;hart” in employee, will give “Kelly”, “Perry” +and “Hart”
  • +
+https://raw.githubusercontent.com/OCA/server-ux/16.0/multisearch_field/static/description/img/After_multi_search.png +
+
+

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

+
    +
  • Akretion
  • +
+
+
+

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

+

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

+
+
+
+ + diff --git a/multisearch_field/tests/__init__.py b/multisearch_field/tests/__init__.py new file mode 100644 index 0000000000..971d1b0ee4 --- /dev/null +++ b/multisearch_field/tests/__init__.py @@ -0,0 +1 @@ +from . import test_multi_search diff --git a/multisearch_field/tests/test_multi_search.py b/multisearch_field/tests/test_multi_search.py new file mode 100644 index 0000000000..f7efdda105 --- /dev/null +++ b/multisearch_field/tests/test_multi_search.py @@ -0,0 +1,50 @@ +# Copyright 2024 Akretion (http://www.akretion.com). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests.common import TransactionCase + + +class TestMultisearch(TransactionCase): + def setUp(self): + super().setUp() + self.partner_1 = self.env["res.partner"].create( + { + "name": "partner_one", + } + ) + self.partner_2 = self.env["res.partner"].create( + { + "name": "partner_two", + } + ) + self.partner_3 = self.env["res.partner"].create( + { + "name": "partner_three", + } + ) + + def test_multi_search(self): + search_1 = self.env["res.partner"].search( + [("name", "like", "/partner_one|partner_two")] + ) + self.assertEqual( + search_1, + self.env["res.partner"].browse((self.partner_1.id, self.partner_2.id)), + ) + search_2 = self.env["res.partner"].search([("name", "ilike", "/one;two|four")]) + self.assertEqual( + search_2, + self.env["res.partner"].browse((self.partner_1.id, self.partner_2.id)), + ) + search_3 = self.env["res.partner"].search([("name", "ilike", "/one;two|three")]) + self.assertEqual( + search_3, + self.env["res.partner"].browse( + (self.partner_1.id, self.partner_2.id, self.partner_3.id) + ), + ) + search_4 = self.env["res.partner"].search([("name", "ilike", "one;two|three")]) + self.assertEqual( + search_4, + self.env["res.partner"], + ) diff --git a/setup/multisearch_field/odoo/addons/multisearch_field b/setup/multisearch_field/odoo/addons/multisearch_field new file mode 120000 index 0000000000..e6637a1047 --- /dev/null +++ b/setup/multisearch_field/odoo/addons/multisearch_field @@ -0,0 +1 @@ +../../../../multisearch_field \ No newline at end of file diff --git a/setup/multisearch_field/setup.py b/setup/multisearch_field/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/multisearch_field/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)