update function common handleFilter
This commit is contained in:
@ -108,7 +108,7 @@ export default class CommonHelper {
|
|||||||
if (param.col_any_like.length > 0) {
|
if (param.col_any_like.length > 0) {
|
||||||
const liker = [];
|
const liker = [];
|
||||||
for (let c of param.col_any_like) {
|
for (let c of param.col_any_like) {
|
||||||
liker.push(c + ' like :filter_like');
|
liker.push('LOWER(' + c + ') like :filter_like');
|
||||||
}
|
}
|
||||||
|
|
||||||
const like = '(' + liker.join(' or ') + ')';
|
const like = '(' + liker.join(' or ') + ')';
|
||||||
|
|||||||
Reference in New Issue
Block a user