fix: refs #7353 add zone filter to exprBuilder
gitea/salix-front/pipeline/pr-master This commit looks good Details

This commit is contained in:
Jorge Penadés 2025-02-14 11:40:24 +01:00
parent 60e5764bf5
commit 67e318f979
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ function exprBuilder(param, value) {
case 'nickname':
return { [`t.nickname`]: { like: `%${value}%` } };
case 'zoneFk':
return { 't.zoneFk': value };
case 'department':
return { 'd.name': value };
case 'totalWithVat':