From 0d07971d87741dc23eb365c3925910e7916a0d72 Mon Sep 17 00:00:00 2001 From: Johannes Hoermann <j.hoermann@adito.de> Date: Thu, 21 Nov 2019 09:59:18 +0100 Subject: [PATCH] Lead import: bugfix - missing .build() --- .../entityfields/load_data/onActionProcess.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/entity/Leadimport_entity/entityfields/load_data/onActionProcess.js b/entity/Leadimport_entity/entityfields/load_data/onActionProcess.js index b42cd1b12a..8c39bbcf29 100644 --- a/entity/Leadimport_entity/entityfields/load_data/onActionProcess.js +++ b/entity/Leadimport_entity/entityfields/load_data/onActionProcess.js @@ -1,3 +1,4 @@ +import("system.logging"); import("system.eMath"); import("system.question"); import("system.neon"); @@ -42,7 +43,7 @@ if (binMetadatas.length > 0) var toInsert = []; - db.deleteData(insertTable, "ROW_ID = '" + assignmentRowId + "'");//delete existing + db.deleteData(insertTable, newWhere([insertTable, "ROW_ID"], assignmentRowId).build());//delete existing for (i = 0; i < table.length; i++)//and load new { @@ -67,7 +68,7 @@ if (binMetadatas.length > 0) var updCols = ["STATUS"]; var updTypes = db.getColumnTypes(updTable, updCols); - db.updateData(updTable, updCols, updTypes, [$KeywordRegistry.importStatus$loaded()], newWhere([updTable, "LEADIMPORTID"], assignmentRowId)); + db.updateData(updTable, updCols, updTypes, [$KeywordRegistry.importStatus$loaded()], newWhere([updTable, "LEADIMPORTID"], assignmentRowId).build()); neon.refreshAll(); -- GitLab