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

Merge branch 'master' of gitlab.adito.de:xrm/basic

parents 4f693ec9 631503d6
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@
</entityField>
<entityField>
<name>STANDARD</name>
<valueProcess>%aditoprj%/entity/Comm_entity/entityfields/standard/valueProcess.js</valueProcess>
</entityField>
<entityField>
<name>USER_EDIT</name>
......
......@@ -3,6 +3,6 @@ import("system.result");
import("system.neon");
import("system.vars");
if(vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_NEW)
//do not check if own value is null or empty because the own value is currently not set correctly when you've got several COMM entries (e.g. in a list edit)
if (vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_NEW)
result.string(util.getNewUUID());
\ No newline at end of file
import("system.util");
import("system.result");
import("system.neon");
import("system.vars");
//do not check if own value is null or empty because the own value is currently not set correctly when you've got several COMM entries (e.g. in a list edit)
if (vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_NEW)
result.string("0");
\ 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