You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

141 lines
5.1 KiB

  1. ====================
  2. Improved Name Search
  3. ====================
  4. .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  5. !! This file is generated by oca-gen-addon-readme !!
  6. !! changes will be overwritten. !!
  7. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  8. .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
  9. :target: https://odoo-community.org/page/development-status
  10. :alt: Beta
  11. .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
  12. :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
  13. :alt: License: AGPL-3
  14. .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
  15. :target: https://github.com/OCA/server-tools/tree/11.0/base_name_search_improved
  16. :alt: OCA/server-tools
  17. .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
  18. :target: https://translation.odoo-community.org/projects/server-tools-11-0/server-tools-11-0-base_name_search_improved
  19. :alt: Translate me on Weblate
  20. .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
  21. :target: https://runbot.odoo-community.org/runbot/149/11.0
  22. :alt: Try me on Runbot
  23. |badge1| |badge2| |badge3| |badge4| |badge5|
  24. Extends the name search feature to use additional, more relaxed
  25. matching methods, and to allow searching into configurable additional
  26. record fields.
  27. The name search is the lookup feature to select a related record.
  28. For example, selecting a Customer on a new Sales order.
  29. For example, typing "john brown" doesn't match "John M. Brown".
  30. The relaxed search also looks up for records containing all the words,
  31. so "John M. Brown" would be a match.
  32. It also tolerates words in a different order, so searching
  33. for "brown john" also works.
  34. .. figure:: https://raw.githubusercontent.com/OCA/server-tools/11.0/base_name_search_improved/images/image0.png
  35. Additionally, an Administrator can configure other fields to also lookup into.
  36. For example, Customers could be additionally searched by City or Phone number.
  37. .. figure:: https://raw.githubusercontent.com/OCA/server-tools/11.0/base_name_search_improved/images/image2.png
  38. How it works:
  39. Regular name search is performed, and the additional search logic is only
  40. triggered if not enough results are found.
  41. This way, no overhead is added on searches that would normally yield results.
  42. But if not enough results are found, then additional search methods are tried.
  43. The specific methods used are:
  44. - Try regular search on each of the additional fields
  45. - Try ordered word search on each of the search fields
  46. - Try unordered word search on each of the search fields
  47. All results found are presented in that order,
  48. hopefully presenting them in order of relevance.
  49. **Table of contents**
  50. .. contents::
  51. :local:
  52. Configuration
  53. =============
  54. The fuzzy search is automatically enabled on all Models.
  55. Note that this only affects typing in related fields.
  56. The regular ``search()``, used in the top right search box, is not affected.
  57. Additional search fields can be configured at Settings > Technical > Database > Models,
  58. using the "Name Search Fields" field.
  59. .. figure:: https://raw.githubusercontent.com/OCA/server-tools/11.0/base_name_search_improved/images/image1.png
  60. :alt: Name Search Fields
  61. :width: 600 px
  62. Usage
  63. =====
  64. Just type into any related field, such as Customer on a Sale Order.
  65. Known issues / Roadmap
  66. ======================
  67. * Also use fuzzy search, such as the Levenshtein distance:
  68. https://www.postgresql.org/docs/9.5/static/fuzzystrmatch.html
  69. * The list of additional fields to search could benefit from caching, for efficiency.
  70. * This feature could also be implemented for regular ``search`` on the ``name`` field.
  71. Bug Tracker
  72. ===========
  73. Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
  74. In case of trouble, please check there if your issue has already been reported.
  75. If you spotted it first, help us smashing it by providing a detailed and welcomed
  76. `feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20base_name_search_improved%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
  77. Do not contact contributors directly about support or help with technical issues.
  78. Credits
  79. =======
  80. Authors
  81. ~~~~~~~
  82. * Daniel Reis
  83. Contributors
  84. ~~~~~~~~~~~~
  85. * Daniel Reis <https://github.com/dreispt>
  86. Other credits
  87. ~~~~~~~~~~~~~
  88. The development of this module has been financially supported by:
  89. * Odoo Community Association
  90. Maintainers
  91. ~~~~~~~~~~~
  92. This module is maintained by the OCA.
  93. .. image:: https://odoo-community.org/logo.png
  94. :alt: Odoo Community Association
  95. :target: https://odoo-community.org
  96. OCA, or the Odoo Community Association, is a nonprofit organization whose
  97. mission is to support the collaborative development of Odoo features and
  98. promote its widespread use.
  99. This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/11.0/base_name_search_improved>`_ project on GitHub.
  100. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.