From 1bb665406582eda62c3ff34d8ee1e05948716c06 Mon Sep 17 00:00:00 2001
From: Simon Leipold <s.leipold@adito.de>
Date: Tue, 15 Dec 2020 14:40:01 +0000
Subject: [PATCH] fixed #1068363 #1066690 - value process of parameter role
 title was missing

(cherry picked from commit d510e53e2a5c82a67eec950c5f9d9c94b86837c6)
---
 entity/Role_entity/Role_entity.aod                          | 6 ++++++
 .../children/roletitle_param/valueProcess.js                | 4 ++++
 2 files changed, 10 insertions(+)
 create mode 100644 entity/Role_entity/entityfields/theirpermissions/children/roletitle_param/valueProcess.js

diff --git a/entity/Role_entity/Role_entity.aod b/entity/Role_entity/Role_entity.aod
index 82bc56f08e..cb7d090b65 100644
--- a/entity/Role_entity/Role_entity.aod
+++ b/entity/Role_entity/Role_entity.aod
@@ -41,6 +41,12 @@
     </entityField>
     <entityConsumer>
       <name>TheirPermissions</name>
+      <children>
+        <entityParameter>
+          <name>RoleTitle_param</name>
+          <valueProcess>%aditoprj%/entity/Role_entity/entityfields/theirpermissions/children/roletitle_param/valueProcess.js</valueProcess>
+        </entityParameter>
+      </children>
       <dependency>
         <name>dependency</name>
         <entityName>PermissionDetail_entity</entityName>
diff --git a/entity/Role_entity/entityfields/theirpermissions/children/roletitle_param/valueProcess.js b/entity/Role_entity/entityfields/theirpermissions/children/roletitle_param/valueProcess.js
new file mode 100644
index 0000000000..7b3054d190
--- /dev/null
+++ b/entity/Role_entity/entityfields/theirpermissions/children/roletitle_param/valueProcess.js
@@ -0,0 +1,4 @@
+import("system.vars");
+import("system.result");
+
+result.string(vars.get("$field.ROLENAME"));
\ No newline at end of file
-- 
GitLab