mirror of https://github.com/OCA/web.git
[IMP] Improving module meta information
parent
063282c011
commit
bdf27d6e0e
|
@ -1,8 +1,8 @@
|
||||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||||
:alt: License: AGPL-3
|
:alt: License: AGPL-3
|
||||||
|
|
||||||
Force AND on Search Input
|
Use AND conditions on omnibar search
|
||||||
=========================
|
====================================
|
||||||
|
|
||||||
When searching for records on same field Odoo joins multiple queries with OR.
|
When searching for records on same field Odoo joins multiple queries with OR.
|
||||||
For example:
|
For example:
|
||||||
|
@ -18,7 +18,7 @@ and Odoo finds customers containing "John" AND "Smith"
|
||||||
Usage
|
Usage
|
||||||
=====
|
=====
|
||||||
|
|
||||||
* Enter your value in Search Input field
|
* Enter your value in omnibar search field
|
||||||
* Press and hold Shift key
|
* Press and hold Shift key
|
||||||
* Select field with mouse or keyboard to perform search on
|
* Select field with mouse or keyboard to perform search on
|
||||||
|
|
||||||
|
|
|
@ -1,36 +1,14 @@
|
||||||
##############################################################################
|
# -*- coding: utf-8 -*-
|
||||||
#
|
# This file is part of OpenERP. The COPYRIGHT file at the top level of
|
||||||
# OpenERP, Open Source Management Solution
|
# this module contains the full copyright notices and license terms.
|
||||||
# Copyright (C) 2015 by UAB Versada (Ltd.) <http://www.versada.lt>
|
|
||||||
# and contributors.
|
|
||||||
#
|
|
||||||
# All Rights Reserved.
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': "Force AND on Search Input",
|
'name': "Use AND conditions on omnibar search",
|
||||||
'version': '0.1',
|
'version': '0.1',
|
||||||
'author': 'Versada UAB, Odoo Community Association (OCA)',
|
'author': 'Versada UAB, Odoo Community Association (OCA)',
|
||||||
'category': 'web',
|
'category': 'web',
|
||||||
'website': 'http://www.versada.lt',
|
'website': 'http://www.versada.lt',
|
||||||
'description': """
|
'description': """
|
||||||
Force AND on Search Input
|
|
||||||
=========================
|
|
||||||
|
|
||||||
When searching for records on same field Odoo joins multiple queries with OR.
|
When searching for records on same field Odoo joins multiple queries with OR.
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue