Skip to content
Snippets Groups Projects
Commit 910c2ded authored by Vinzent Broens's avatar Vinzent Broens Committed by Martin Groppe
Browse files

[Projekt: xRM-Service][TicketNr.: 2001745][Symbol für Überfälligkeit fehlerhaft]

parent f440d23b
No related branches found
No related tags found
No related merge requests found
import("system.logging");
import("system.result");
import("system.vars");
......
......@@ -4,5 +4,9 @@ import("Sql_lib");
import("system.result");
import("KeywordRegistry_basic");
result.string( SqlBuilder.caseStatement().when("TASK.MATURITY_DATE", datetime.date(), SqlBuilder.GREATER()).then("''").when( "TASK.MATURITY_DATE is null").then("''").when( "TASK.STATUS", $KeywordRegistry.taskPriority()).then("''").elseString("true"));
result.string( SqlBuilder.caseStatement()
.when("TASK.MATURITY_DATE", datetime.date(), SqlBuilder.GREATER()).then("''")
.when( "TASK.MATURITY_DATE is null").then("''")
.when( "TASK.STATUS", $KeywordRegistry.taskStatus$ended()).then("''")
.elseString("true"));
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