Skip to content
Snippets Groups Projects
Commit b6a80e31 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

bugfix indexsearch indexer

parent 161f0c15
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ if (vars.exists("$local.idvalue")) {
queryCondition = "where RELATION.RELATIONID in ('" + affectedIds.map(function (v){return db.quote(v);}).join("', '") + "')";
//TODO: refactor this for incremental indexer (injections?)
}
sqlHelper = new LegacySqlUtils();
sqlHelper = new SqlMaskingUtils();
sqlQuery = "select RELATION.RELATIONID "
+ "," + sqlHelper.concat(["ORG.NAME", "ORG.CUSTOMERCODE"])
+ " as TITLECOLUMN "
......
......@@ -10,7 +10,7 @@ if (vars.exists("$local.idvalue")) {
queryCondition = "where RELATION.RELATIONID in ('" + affectedIds.map(function (v){return db.quote(v);}).join("', '") + "')";
//TODO: refactor this for incremental indexer (injections?)
}
sqlHelper = new LegacySqlUtils();
sqlHelper = new SqlMaskingUtils();
sqlQuery = "select RELATION.RELATIONID "
+ "," + sqlHelper.concat(["PERS.SALUTATION", "PERS.FIRSTNAME", "PERS.LASTNAME", "ORG.NAME"])
+ " as TITLECOLUMN "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment