Skip to content
Snippets Groups Projects
Commit 4d0bca99 authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

fix data alias querry

parent 09c7ad3d
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ queryCondition = "";
if (vars.exists("$local.idvalue")) {
affectedIds = vars.get("$local.idvalue");
queryCondition = "where SALESORDERID in ('" + affectedIds.map(function (v){return db.quote(v);}).join("', '") + "')";
//TODO: refactor this for incremental indexer (injections?)
//TODO: refactor this for incremental indexer (injections?) ----> use SqlCondition Lib
}
sqlHelper = new SqlMaskingUtils();
sqlQuery = "select SALESORDERID, "
......
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