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

Task: added contact-display-processes

parent 199abb99
No related branches found
No related tags found
No related merge requests found
......@@ -51,12 +51,14 @@
<consumer>ContactRequestors</consumer>
<linkedContext>Person</linkedContext>
<mandatory v="true" />
<displayValueProcess>%aditoprj%/entity/Task_entity/entityfields/requestor_contact_id/displayValueProcess.js</displayValueProcess>
</entityField>
<entityField>
<name>EDITOR_CONTACT_ID</name>
<title>{$TASK_EDITOR}</title>
<consumer>ContactEditors</consumer>
<linkedContext>Person</linkedContext>
<displayValueProcess>%aditoprj%/entity/Task_entity/entityfields/editor_contact_id/displayValueProcess.js</displayValueProcess>
</entityField>
<entityField>
<name>START_DATE</name>
......
import("system.result");
import("system.vars");
import("Contact_lib");
var id = vars.get("$this.value");
var title = ContactUtils.getFullTitleByContactId(id);
result.string(title);
\ No newline at end of file
import("system.result");
import("system.vars");
import("Contact_lib");
var id = vars.get("$this.value");
var title = ContactUtils.getFullTitleByContactId(id);
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