From d4335cf93e7dde8a05f880e8bf8c61fd20418f78 Mon Sep 17 00:00:00 2001 From: "a.schindlbeck" <a.schindlbeck@adito.de> Date: Fri, 22 May 2020 15:35:45 +0200 Subject: [PATCH] #1058219 Presets get recognized, after user moved or resized an appointment --- .../entityfields/begin/valueProcess.js | 9 +++++++++ .../Appointment_entity/entityfields/end/valueProcess.js | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/entity/Appointment_entity/entityfields/begin/valueProcess.js b/entity/Appointment_entity/entityfields/begin/valueProcess.js index 48c50b4d7e..2c01e234cb 100644 --- a/entity/Appointment_entity/entityfields/begin/valueProcess.js +++ b/entity/Appointment_entity/entityfields/begin/valueProcess.js @@ -14,4 +14,13 @@ if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW && vars.exists("$para result.string(vars.get("$this.value")); else if(event[calendars.DTSTART]) result.string(event[calendars.DTSTART]); +} + +/** + * Sets explicitly the start date when a preset is sent from the core, due to a move or resize event from the user. Do not remove. + */ +if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_EDIT && vars.exists("$param.Entry_param")) +{ + var event = JSON.parse(vars.getString("$param.Entry_param")); + result.string(event[calendars.DTSTART]); } \ No newline at end of file diff --git a/entity/Appointment_entity/entityfields/end/valueProcess.js b/entity/Appointment_entity/entityfields/end/valueProcess.js index 284d2d6651..c7b6ff0bc3 100644 --- a/entity/Appointment_entity/entityfields/end/valueProcess.js +++ b/entity/Appointment_entity/entityfields/end/valueProcess.js @@ -14,4 +14,13 @@ if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW && vars.exists("$para result.string(vars.get("$this.value")); else if(event[calendars.DTEND]) result.string(event[calendars.DTEND]); +} + +/** + * Sets explicitly the end date when a preset is sent from the core, due to a move or resize event from the user. Do not remove. + */ +if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_EDIT && vars.exists("$param.Entry_param")) +{ + var event = JSON.parse(vars.getString("$param.Entry_param")); + result.string(event[calendars.DTEND]); } \ No newline at end of file -- GitLab