update filter

This commit is contained in:
2025-01-13 13:43:48 +07:00
parent b8929f807d
commit 74607b679c

View File

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