From 0915c4598fb5383ba0dfe7b509c228fe57c2d20b Mon Sep 17 00:00:00 2001 From: "a.schindlbeck" <a.schindlbeck@adito.de> Date: Tue, 23 Jul 2019 16:39:53 +0200 Subject: [PATCH] =?UTF-8?q?#1041362=20AppointmentLinks=20jetzt=20auch=20ge?= =?UTF-8?q?sperrt=20wenn=20User=20nicht=20=C3=A4ndern=20darf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppointmentLink_entity.aod | 8 +++++ .../entityfields/objectid/stateProcess.js | 30 +++++++++++++++++++ .../entityfields/objecttype/stateProcess.js | 30 +++++++++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 entity/AppointmentLink_entity/entityfields/objectid/stateProcess.js create mode 100644 entity/AppointmentLink_entity/entityfields/objecttype/stateProcess.js diff --git a/entity/AppointmentLink_entity/AppointmentLink_entity.aod b/entity/AppointmentLink_entity/AppointmentLink_entity.aod index 58e5a6ff37..e1b12bd5bf 100644 --- a/entity/AppointmentLink_entity/AppointmentLink_entity.aod +++ b/entity/AppointmentLink_entity/AppointmentLink_entity.aod @@ -23,6 +23,7 @@ <title>{$OBJECTLINK_OBJECT}</title> <consumer>Objects</consumer> <linkedContext>Object</linkedContext> + <stateProcess>%aditoprj%/entity/AppointmentLink_entity/entityfields/objectid/stateProcess.js</stateProcess> <displayValueProcess>%aditoprj%/entity/AppointmentLink_entity/entityfields/objectid/displayValueProcess.js</displayValueProcess> <onValueChangeTypes> <element>MASK</element> @@ -35,6 +36,7 @@ <title>{$OBJECTLINK_TYPE}</title> <consumer>Context</consumer> <linkedContext>Context</linkedContext> + <stateProcess>%aditoprj%/entity/AppointmentLink_entity/entityfields/objecttype/stateProcess.js</stateProcess> <displayValueProcess>%aditoprj%/entity/AppointmentLink_entity/entityfields/objecttype/displayValueProcess.js</displayValueProcess> </entityField> <entityParameter> @@ -94,6 +96,12 @@ <description>PARAMETER </description> </entityParameter> + <entityConsumer> + <name>AppointmentId</name> + <dependency> + <name>dependency</name> + </dependency> + </entityConsumer> </entityFields> <recordContainers> <dbRecordContainer> diff --git a/entity/AppointmentLink_entity/entityfields/objectid/stateProcess.js b/entity/AppointmentLink_entity/entityfields/objectid/stateProcess.js new file mode 100644 index 0000000000..b9f041ffd3 --- /dev/null +++ b/entity/AppointmentLink_entity/entityfields/objectid/stateProcess.js @@ -0,0 +1,30 @@ +import("system.logging"); +import("system.result"); +import("system.tools"); +import("system.neon"); +import("system.vars"); +import("system.calendars"); + +if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_VIEW) + result.object(neon.COMPONENTSTATE_DISABLED); + +else if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW && vars.get("$param.AppointmentId_param")) +{ + var entry = calendars.getEntry(vars.get("$param.AppointmentId_param"), null, null); + doCalc(entry); +} + +else if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_EDIT) +{ + var entryy = calendars.getEntry(vars.get("$field.APPOINTMENT_ID"), null, null); + doCalc(entryy); +} + + +function doCalc(entry) +{ + if(entry[calendars.ORGANIZER2]["paramvalue"] == "mailto:" + tools.getCurrentUser()["params"]["email"]) + result.object(neon.COMPONENTSTATE_EDITABLE); + else + result.object(neon.COMPONENTSTATE_DISABLED); +} \ No newline at end of file diff --git a/entity/AppointmentLink_entity/entityfields/objecttype/stateProcess.js b/entity/AppointmentLink_entity/entityfields/objecttype/stateProcess.js new file mode 100644 index 0000000000..7eaf72f92d --- /dev/null +++ b/entity/AppointmentLink_entity/entityfields/objecttype/stateProcess.js @@ -0,0 +1,30 @@ +import("system.logging"); +import("system.result"); +import("system.tools"); +import("system.neon"); +import("system.vars"); +import("system.calendars"); + +if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_VIEW) + result.object(neon.COMPONENTSTATE_DISABLED); + +else if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW && vars.get("$param.AppointmentId_param")) +{ + var entry = calendars.getEntry(vars.get("$param.AppointmentId_param"), null, null); + doCalc(entry); +} + +else if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_EDIT) +{ + var entryy = calendars.getEntry(vars.get("$field.APPOINTMENT_ID"), null, null); + doCalc(entryy); +} + + +function doCalc(entry) +{ + if(entry[calendars.ORGANIZER2]["paramvalue"] == "mailto:" + tools.getCurrentUser()["params"]["email"]) + result.object(neon.COMPONENTSTATE_EDITABLE); + else + result.object(neon.COMPONENTSTATE_DISABLED); +} \ No newline at end of file -- GitLab