Skip to content
Snippets Groups Projects
Commit 2e2e8f3d authored by Andreas Schindlbeck's avatar Andreas Schindlbeck
Browse files

#1065452 Calendar: Appointments triggert from Contexts can now have a description preset

parent 27e38f3a
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@
</entityField>
<entityField>
<name>DESCRIPTION</name>
<valueProcess>%aditoprj%/entity/Appointment_entity/entityfields/description/valueProcess.js</valueProcess>
</entityField>
<entityField>
<name>CLASSIFICATION</name>
......
import("system.neon");
import("system.vars");
import("system.calendars");
import("system.result");
/**
* Following if() is only for passing param-parts from "new Appointment"-Dialog to AppointmentEditViewTemplate
*/
if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW && vars.exists("$param.Entry_param") && vars.get("$this.value") == null)
{
var event = JSON.parse(vars.getString("$param.Entry_param"));
if(event[calendars.DESCRIPTION])
result.string(event[calendars.DESCRIPTION]);
}
else
result.string(vars.get("$this.value"));
\ No newline at end of file
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