From 20e674eddf0258a8bbeb1ab7b50529d7fdcff57e Mon Sep 17 00:00:00 2001 From: "S.Listl" <S.Listl@SLISTL.aditosoftware.local> Date: Fri, 13 Mar 2020 13:52:09 +0000 Subject: [PATCH] AttributeFilter fix for type BOOLEAN (cherry picked from commit 3c22e393b42b62e33533e4557c8c43f51c439d24) --- process/AttributeFilter_lib/process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process/AttributeFilter_lib/process.js b/process/AttributeFilter_lib/process.js index 0a4f4f7bb1..e5c3eac4d0 100644 --- a/process/AttributeFilter_lib/process.js +++ b/process/AttributeFilter_lib/process.js @@ -128,7 +128,7 @@ AttributeFilterExtensionMaker.getFilterCondition = function(pObjectType, pFilter var condition = pCondition; if (attributeType == $AttributeTypes.BOOLEAN.toString()) - condition = newWhere(["AB_ATTRIBUTERELATION", dbField], SqlUtils.escapeVars(pRawValue), pOperatorName == "LIKE" ? SqlBuilder.EQUAL() : SqlBuilder.NOT_EQUAL()); + condition = newWhere(["AB_ATTRIBUTERELATION", dbField], SqlUtils.escapeVars(pRawValue), pOperatorName == "=" ? SqlBuilder.EQUAL() : SqlBuilder.NOT_EQUAL()); else { condition = pCondition.replace(pColumnPlaceholder, dbField, "g"); -- GitLab