mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
7 lines
227 B
JavaScript
7 lines
227 B
JavaScript
openerp.search_enhanced_operators = function(instance){
|
|
var _lt = instance.web._lt;
|
|
instance.web.search.ExtendedSearchProposition.Char.prototype.operators.push(
|
|
{value: '=ilike', text: _lt("matches")}
|
|
);
|
|
};
|