Skip to content
Snippets Groups Projects
Commit 10c28bda authored by Sebastian Listl's avatar Sebastian Listl :speech_balloon:
Browse files

1065687 dsvgo only show once fix

parent 39ce7f32
No related branches found
No related tags found
No related merge requests found
......@@ -2,4 +2,4 @@ import("system.vars");
import("system.neon");
import("system.result");
result.string(vars.get("$sys.recordstate") != neon.OPERATINGSTATE_NEW);
\ No newline at end of file
result.string(vars.get("$sys.recordstate") != neon.OPERATINGSTATE_NEW && vars.get("$sys.recordstate") != neon.OPERATINGSTATE_EDIT);
\ No newline at end of file
......@@ -2,4 +2,4 @@ import("system.vars");
import("system.neon");
import("system.result");
result.string(vars.get("$sys.recordstate") != neon.OPERATINGSTATE_NEW);
\ No newline at end of file
result.string(vars.get("$sys.recordstate") != neon.OPERATINGSTATE_NEW && vars.get("$sys.recordstate") != neon.OPERATINGSTATE_EDIT);
\ No newline at end of file
......@@ -2,4 +2,4 @@ import("system.vars");
import("system.neon");
import("system.result");
result.string(vars.get("$sys.recordstate") != neon.OPERATINGSTATE_NEW);
\ No newline at end of file
result.string(vars.get("$sys.recordstate") != neon.OPERATINGSTATE_NEW && vars.get("$sys.recordstate") != neon.OPERATINGSTATE_EDIT);
\ 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