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

display value processes should use $field now

parent eae31ecc
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,6 @@ import("system.result");
import("system.vars");
import("Contact_lib");
var id = vars.get("$this.value");
//show the simpel title since this will be later an employee-entry and therefore no organisation is needed
var title = ContactUtils.getTitleByContactId(id);
var title = ContactUtils.getTitleByContactId(vars.get("$field.RESPONSIBLE"));
result.string(title);
\ No newline at end of file
......@@ -2,7 +2,6 @@ import("system.result");
import("system.vars");
import("Contact_lib");
var id = vars.get("$this.value");
//show the simpel title since this will be later an employee-entry and therefore no organisation is needed
var title = ContactUtils.getTitleByContactId(id);
var title = ContactUtils.getTitleByContactId(vars.get("$field.TASK_EDITOR_CONTACT_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