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.

38 lines
1.1 KiB

  1. # -*- coding: utf-8 -*-
  2. # This file is part of OpenERP. The COPYRIGHT file at the top level of
  3. # this module contains the full copyright notices and license terms.
  4. {
  5. 'name': "Use AND conditions on omnibar search",
  6. 'version': '0.1',
  7. 'author': 'Versada UAB, Odoo Community Association (OCA)',
  8. 'category': 'web',
  9. 'website': 'http://www.versada.lt',
  10. 'description': """
  11. When searching for records on same field Odoo joins multiple queries with OR.
  12. For example:
  13. * Perform a search for customer "John" on field Name
  14. * Odoo displays customers containing "John"
  15. * Search for "Smith" on same field Name
  16. * Odoo displays customers containing "John" OR "Smith"
  17. With this module installed you can press Shift key before searching for "Smith"
  18. and Odoo finds customers containing "John" AND "Smith"
  19. Usage
  20. =====
  21. * Enter your value in Search Input field
  22. * Press and hold Shift key
  23. * Select field with mouse or keyboard to perform search on
  24. """,
  25. 'depends': [
  26. 'web',
  27. ],
  28. 'data': [
  29. 'data.xml',
  30. ],
  31. 'installable': True,
  32. 'application': False,
  33. }