Skip to content
Snippets Groups Projects
Commit 88ba6708 authored by Sebastian Pongratz's avatar Sebastian Pongratz :ping_pong:
Browse files

[Projekt: xRM-ContactManagement][TicketNr.: 2002288][[Exportvorlagen]...

[Projekt: xRM-ContactManagement][TicketNr.: 2002288][[Exportvorlagen] Bezeichnung des Verwendungsorts in der Tabelle der Exportvorlagenfelder wird auf DE und EN angezeigt]
parent 1720eba6
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,7 @@
<mandatory v="true" />
<mandatoryProcess>%aditoprj%/entity/ExportTemplatePlaceOfUse_entity/entityfields/exporttemplateplaceofuse_id/mandatoryProcess.js</mandatoryProcess>
<stateProcess>%aditoprj%/entity/ExportTemplatePlaceOfUse_entity/entityfields/exporttemplateplaceofuse_id/stateProcess.js</stateProcess>
<displayValueProcess>%aditoprj%/entity/ExportTemplatePlaceOfUse_entity/entityfields/exporttemplateplaceofuse_id/displayValueProcess.js</displayValueProcess>
<onValueChange>%aditoprj%/entity/ExportTemplatePlaceOfUse_entity/entityfields/exporttemplateplaceofuse_id/onValueChange.js</onValueChange>
<onValueChangeTypes>
<element>MASK</element>
......
import("system.translate");
import("Context_lib");
import("Sql_lib");
import("system.result");
import("Util_lib");
import("system.entities");
import("system.vars");
let context = newSelect("PLACEOFUSE")
.from("EXPORTTEMPLATEPLACEOFUSE")
.whereIfSet("EXPORTTEMPLATEPLACEOFUSE.EXPORTTEMPLATEPLACEOFUSEID", vars.get("$this.value"))
.cell(true);
if (Utils.isNotNullOrEmptyString(context))
{
let title = ContextUtils.getTranslatedTitle(context) || ContextUtils.getEntityTitle(context, true) || translate.text(context);
result.string(title);
}
\ 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