Skip to content
Snippets Groups Projects
Commit 915fbc90 authored by Benjamin Ulrich's avatar Benjamin Ulrich :speech_balloon:
Browse files

1057748 Scanservice fixes

parent 8b334b20
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ import("system.util");
import("system.mail");
import("DocumentTemplate_lib");
import("Entity_lib");
import("EmailUtil_lib");
if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW || vars.get("$sys.recordstate") == neon.OPERATINGSTATE_EDIT)
{
......
import("system.result");
import("Sql_lib");
result.string(newSelect("CAMPAIGNSTEP.NAME").from("CAMPAIGNSTEP").where("CAMPAIGNSTEP.CAMPAIGNSTEPID = CAMPAIGNPARTICIPANT.CAMPAIGNSTEP_ID").toString());
\ No newline at end of file
import("system.result");
import("Sql_lib");
result.string(newSelect("COUNT(*)").from("CAMPAIGNPARTICIPANT", "p1").where("p1.CAMPAIGNSTEP_ID = CAMPAIGNPARTICIPANT.CAMPAIGNSTEP_ID").toString());
\ No newline at end of file
import("system.vars");
import("system.result");
result.string(vars.get("$field.ROLENAME"));
\ No newline at end of file
import("system.vars");
import("system.result");
result.string(vars.get("$field.ROLENAME"));
\ No newline at end of file
......@@ -13,6 +13,7 @@ import("system.neon");
import("system.mail");
import("Bulkmail_lib");
import("system.tools");
import("EmailUtil_lib");
function EmailWritingUtils () {}
......
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