update function common handleFilter

This commit is contained in:
2024-12-26 16:09:32 +07:00
parent ea4df483eb
commit e0788ae1a8

View File

@ -108,7 +108,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 ') + ')';