From 379943b8909523fd6543223899f6efb1c37e1e8a Mon Sep 17 00:00:00 2001 From: "S.Listl" <S.Listl@SLISTL.aditosoftware.local> Date: Tue, 22 Oct 2019 12:04:41 +0200 Subject: [PATCH] AttributeFilter fix --- process/AttributeFilter_lib/process.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/process/AttributeFilter_lib/process.js b/process/AttributeFilter_lib/process.js index b9f5510d8c..d4a51281da 100644 --- a/process/AttributeFilter_lib/process.js +++ b/process/AttributeFilter_lib/process.js @@ -101,7 +101,11 @@ AttributeFilterExtensionMaker.makeFilterValues = function() AttributeFilterExtensionMaker.getFilterCondition = function(pObjectType, pFilterName, pCondition, pRawValue, pOperatorName, pIdTableName, pIdColumnName) { var resSql; - var preparedValues = []; + var preparedValues = []; + var name = pFilterName; + name = AttributeSearchNameCoder.decode(name); + var attributeId = name.id; + var attributeType = name.type; if (attributeType == $AttributeTypes.VOID.toString()) { -- GitLab