Skip to content
Snippets Groups Projects
Commit d411c9e6 authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

dsgvo fixes

parent 24a3b78c
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,6 @@ import("system.neon");
if (vars.get("$this.value") == $KeywordRegistry.DSGVODeadline$onTime())
{
neon.setFieldValues({
"$field.RECIPIENT": "",
"$field.GUARANTEE": ""
"$field.dateDeadline": ""
})
}
\ No newline at end of file
......@@ -3,4 +3,5 @@ import("system.vars");
import("system.neon");
import("KeywordRegistry_basic");
result.object(vars.get("$field.TRANSMISSION") != $KeywordRegistry.DSGVOTransmission$none());
\ No newline at end of file
result.object(vars.get("$field.TRANSMISSION") != $KeywordRegistry.DSGVOTransmission$none()
&& vars.get("$field.TRANSMISSION") != $KeywordRegistry.DSGVOTransmission$inland());
\ No newline at end of file
......@@ -3,7 +3,7 @@ import("system.vars");
import("system.neon");
import("KeywordRegistry_basic");
if (vars.get("$field.TRANSMISSION") != $KeywordRegistry.DSGVOTransmission$none())
if (vars.get("$field.TRANSMISSION") != $KeywordRegistry.DSGVOTransmission$none() && vars.get("$field.TRANSMISSION") != $KeywordRegistry.DSGVOTransmission$inland())
{
result.string(neon.COMPONENTSTATE_EDITABLE);
}
......
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