From fde5cd6d8cfbcbda6edb2d3f650112b3044a848b Mon Sep 17 00:00:00 2001 From: Johannes Hoermann <j.hoermann@adito.de> Date: Fri, 1 Feb 2019 11:43:23 +0100 Subject: [PATCH] RelationObject condition --- process/Sql_lib/process.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/process/Sql_lib/process.js b/process/Sql_lib/process.js index 7b37e4a793..a0c6a5adc3 100644 --- a/process/Sql_lib/process.js +++ b/process/Sql_lib/process.js @@ -1,4 +1,3 @@ -import("system.logging"); import("system.translate"); import("system.vars"); import("system.db"); @@ -187,7 +186,6 @@ SqlCondition.prototype.orPrepare = function(field, value, cond, fieldType) { * @return {SqlCondition} current SqlCondition-object */ SqlCondition.prototype.andPrepareVars = function(field, variable, cond, fieldType) { - logging.log("andPrepareVars " + variable) variable = this._checkVars(variable) if (variable) { return this.andPrepare(field, variable, cond, fieldType); @@ -210,7 +208,6 @@ SqlCondition.prototype.andPrepareVars = function(field, variable, cond, fieldTyp * @return {SqlCondition} current SqlCondition-object */ SqlCondition.prototype.orPrepareVars = function(field, variable, cond, fieldType) { - logging.log("orPrepareVars " + variable) variable = this._checkVars(variable) if (variable) { return this.orPrepare(field, variable, cond, fieldType); @@ -280,10 +277,8 @@ SqlCondition.prototype.buildSql = function(pBeforeCondition, pAlternativeCond, p * @ignore */ SqlCondition.prototype._checkVars = function(variable) { - logging.log("var: " + variable) if (vars.exists(variable)) { var value = vars.getString(variable); - logging.log("val: " + value) if (value) { return value; } -- GitLab