Skip to content
Snippets Groups Projects
Commit ba74b57c authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

Merge branch '#1065199-campaign-creation-bug' into '2020.2.0'

#1065199 campaign creation bug

See merge request xrm/basic!380
parents ee504a69 ddfc0a2c
No related branches found
No related tags found
No related merge requests found
import("system.neon");
import("system.result");
import("system.vars");
result.string("STEPDATEEND_ALIAS");
\ No newline at end of file
var recordState = vars.get("$sys.recordstate");
if (recordState != neon.OPERATINGSTATE_NEW && recordState != neon.OPERATINGSTATE_EDIT) {
result.string("STEPDATEEND_ALIAS");
} else {
result.string("0");
}
import("system.neon");
import("system.result");
import("system.vars");
result.string("STEPDATESTART_ALIAS");
\ No newline at end of file
var recordState = vars.get("$sys.recordstate");
if (recordState != neon.OPERATINGSTATE_NEW && recordState != neon.OPERATINGSTATE_EDIT) {
result.string("STEPDATESTART_ALIAS");
} else {
result.string("0");
}
\ No newline at end of file
......@@ -15,7 +15,6 @@
<titleField>TITLE</titleField>
<descriptionField>DATE</descriptionField>
<iconField>ICON</iconField>
<hideContentSearch v="false" />
<entityField>#ENTITY</entityField>
<defaultGroupFields>
<element>ENTITY_NAME</element>
......
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