update filter like any

This commit is contained in:
2024-12-26 16:06:13 +07:00
parent 03af1d5992
commit c5616bb24d

View File

@ -136,7 +136,7 @@ export default class CommonHelper {
if (param.col_any_like.length > 0) {
const liker = [];
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 ') + ')';