update to lower
This commit is contained in:
@ -149,10 +149,10 @@ export default class CommonHelper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (param.col_any_eq.length > 0) {
|
if (param.col_any_eq.length > 0) {
|
||||||
whereVal['filter_eq'] = filter_any_val;
|
whereVal['filter_eq'] = filter_any_val.toLowerCase();
|
||||||
}
|
}
|
||||||
if (param.col_any_like.length > 0) {
|
if (param.col_any_like.length > 0) {
|
||||||
whereVal['filter_like'] = '%' + filter_any_val + '%';
|
whereVal['filter_like'] = '%' + filter_any_val.toLowerCase() + '%';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
@ -186,7 +186,7 @@ export default class CommonHelper {
|
|||||||
whereVal['filter_eq'] = param.filter.toLowerCase();
|
whereVal['filter_eq'] = param.filter.toLowerCase();
|
||||||
}
|
}
|
||||||
if (param.col_any_like.length > 0) {
|
if (param.col_any_like.length > 0) {
|
||||||
whereVal['filter_like'] = '%' + param.filter + '%';
|
whereVal['filter_like'] = '%' + param.filter.toLowerCase() + '%';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user