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.
 
 
 
 
 

12 lines
337 B

odoo.define('web_advanced_search_wildcard', function (require) {
"use strict";
var core = require('web.core');
var search_filters = require('web.search_filters');
var _lt = core._lt;
search_filters.ExtendedSearchProposition.Char.prototype.operators.push(
{value: '=ilike', text: _lt("matches")}
);
});