From a0c50a6fe7aaa432c2b108f13ae82ddc42a27fbf Mon Sep 17 00:00:00 2001
From: "S.Listl" <S.Listl@SLISTL.aditosoftware.local>
Date: Wed, 8 Jan 2020 15:12:39 +0100
Subject: [PATCH] Attribute filter extension performance fix

---
 entity/360Degree_entity/360Degree_entity.aod |  2 +-
 process/AttributeFilter_lib/process.js       | 45 +++++++++-----------
 2 files changed, 22 insertions(+), 25 deletions(-)

diff --git a/entity/360Degree_entity/360Degree_entity.aod b/entity/360Degree_entity/360Degree_entity.aod
index a1f5d7de91..ed6b970402 100644
--- a/entity/360Degree_entity/360Degree_entity.aod
+++ b/entity/360Degree_entity/360Degree_entity.aod
@@ -147,7 +147,7 @@
         </entityActionField>
         <entityActionField>
           <name>newOrder</name>
-          <title>Order</title>
+          <title>Receipt</title>
           <onActionProcess>%aditoprj%/entity/360Degree_entity/entityfields/newmodule/children/neworder/onActionProcess.js</onActionProcess>
           <iconId>VAADIN:DOLLAR</iconId>
           <stateProcess>%aditoprj%/entity/360Degree_entity/entityfields/newmodule/children/neworder/stateProcess.js</stateProcess>
diff --git a/process/AttributeFilter_lib/process.js b/process/AttributeFilter_lib/process.js
index 2177479e97..2427bdf5db 100644
--- a/process/AttributeFilter_lib/process.js
+++ b/process/AttributeFilter_lib/process.js
@@ -1,3 +1,4 @@
+import("system.SQLTYPES");
 import("system.translate");
 import("Entity_lib");
 import("system.vars");
@@ -100,8 +101,7 @@ AttributeFilterExtensionMaker.makeFilterValues = function()
 
 AttributeFilterExtensionMaker.getFilterCondition = function(pObjectType, pFilterName, pCondition, pRawValue, pOperatorName, pIdTableName, pIdColumnName) 
 {
-    var resSql; 
-    var preparedValues = [];    
+    var resSql;   
     var name = pFilterName;
     name = AttributeSearchNameCoder.decode(name);
     var attributeId = name.id;
@@ -109,19 +109,17 @@ AttributeFilterExtensionMaker.getFilterCondition = function(pObjectType, pFilter
     
     if (attributeType == $AttributeTypes.VOID.toString() || (attributeType == $AttributeTypes.BOOLEAN.toString() && (pOperatorName == "IS NOT NULL" || pOperatorName == "IS NULL")))
     {
-        preparedValues.push([pObjectType, SqlUtils.getSingleColumnType("AB_ATTRIBUTERELATION.OBJECT_TYPE")]);
-        preparedValues.push([attributeId, SqlUtils.getSingleColumnType("AB_ATTRIBUTERELATION.AB_ATTRIBUTE_ID")]);
+        resSql = newSelect("count(*)")
+            .from("AB_ATTRIBUTERELATION")
+            .where("OBJECT_ROWID = " + pIdTableName + "." + pIdColumnName)
+            .and("AB_ATTRIBUTERELATION.OBJECT_TYPE", pObjectType)
+            .and("AB_ATTRIBUTERELATION.AB_ATTRIBUTE_ID", attributeId);
         
-        resSql = "(select count(*) \n\
-                    from AB_ATTRIBUTERELATION \n\
-                    where OBJECT_ROWID = " + pIdTableName + "." + pIdColumnName +" \n\
-                    and OBJECT_TYPE = ? \n\
-                    and AB_ATTRIBUTERELATION.AB_ATTRIBUTE_ID = ?)";
-
+        var cond = SqlBuilder.EQUAL();
         if (pOperatorName == "IS NOT NULL" || pRawValue == "1" && pOperatorName == "LIKE" || pRawValue == "0" && pOperatorName == "NOT LIKE")
-            resSql += " > 0 ";
-        else
-            resSql += " = 0 ";
+            cond = SqlBuilder.GREATER();
+        
+        resSql = newWhere(resSql, 0, cond, SQLTYPES.INTEGER).toString();
     }
     else
     {
@@ -129,23 +127,22 @@ AttributeFilterExtensionMaker.getFilterCondition = function(pObjectType, pFilter
 
         var condition = pCondition;
         if (attributeType == $AttributeTypes.BOOLEAN.toString())
-            condition = dbField + (pOperatorName == "LIKE" ? " = " : " != ")  + pRawValue;
+            condition = newWhere(["AB_ATTRIBUTERELATION", dbField], pRawValue, pOperatorName == "LIKE" ? SqlBuilder.EQUAL() : SqlBuilder.NOT_EQUAL());
         else
         {
             condition = pCondition;
             condition = condition.replace("{'table.column'}", dbField, "g");
         }
-        preparedValues.push([pObjectType, SqlUtils.getSingleColumnType("AB_ATTRIBUTERELATION.OBJECT_TYPE")]);
-        preparedValues.push([attributeId, SqlUtils.getSingleColumnType("AB_ATTRIBUTERELATION.AB_ATTRIBUTE_ID")]);
-
-        resSql = pIdTableName + "." + pIdColumnName + " in (select " + pIdTableName + "." + pIdColumnName + " \n\
-                             from " + pIdTableName + " \n\
-                             left join AB_ATTRIBUTERELATION on (AB_ATTRIBUTERELATION.OBJECT_ROWID = " + pIdTableName + "." + pIdColumnName + " \n\
-                                                                and AB_ATTRIBUTERELATION.OBJECT_TYPE = ? \n\
-                                                                and AB_ATTRIBUTERELATION.AB_ATTRIBUTE_ID = ?) \n\
-                             where " + condition + " )";
+        
+        //a SqlBuilder.IN() in a newWhere is not used here since the subselect can contain a placeholder
+        //(the variable condition) that would break the function
+        resSql = pIdTableName + "." + pIdColumnName + " in (" + newSelect("AB_ATTRIBUTERELATION.OBJECT_ROWID")
+                .from("AB_ATTRIBUTERELATION")
+                .where("AB_ATTRIBUTERELATION.OBJECT_ROWID = " + pIdTableName + "." + pIdColumnName)
+                .and("AB_ATTRIBUTERELATION.OBJECT_TYPE", pObjectType)
+                .and("AB_ATTRIBUTERELATION.AB_ATTRIBUTE_ID", attributeId)
+                .and(condition) + ")";
     }
-    resSql = SqlUtils.translateConditionWithQuotes([resSql, preparedValues]);
     return resSql;
 };
 
-- 
GitLab