diff --git a/entity/EmployeeRole_entity/EmployeeRole_entity.aod b/entity/EmployeeRole_entity/EmployeeRole_entity.aod index 772f769f7bcb28204547beeb4fd29519a8b0886d..9ea950d382e8cf93bcaabe671e18f0143c2a060a 100644 --- a/entity/EmployeeRole_entity/EmployeeRole_entity.aod +++ b/entity/EmployeeRole_entity/EmployeeRole_entity.aod @@ -4,6 +4,7 @@ <title>Role</title> <majorModelMode>DISTRIBUTED</majorModelMode> <documentation>%aditoprj%/entity/EmployeeRole_entity/documentation.adoc</documentation> + <grantCreate v="true" /> <grantUpdate v="true" /> <titlePlural>Roles</titlePlural> <recordContainer>jdito</recordContainer> diff --git a/entity/Employee_entity/Employee_entity.aod b/entity/Employee_entity/Employee_entity.aod index 7d17b6b50c75771b55e83b9354cd0e843c011a0a..373bba05405c3e7b34016dbf406a56d9ad821d02 100644 --- a/entity/Employee_entity/Employee_entity.aod +++ b/entity/Employee_entity/Employee_entity.aod @@ -351,6 +351,10 @@ <name>EmployeeContactIdWhitelist_param</name> <expose v="true" /> </entityParameter> + <entityParameter> + <name>EmployeeWithRole_param</name> + <expose v="true" /> + </entityParameter> </entityFields> <recordContainers> <jDitoRecordContainer> diff --git a/entity/Employee_entity/recordcontainers/jdito/contentProcess.js b/entity/Employee_entity/recordcontainers/jdito/contentProcess.js index 5fabbf72734e00a22b4fb52ad5cb2e3472adcf76..d09a96f70c7cf1c975eb2ad2ba06406984ac281e 100644 --- a/entity/Employee_entity/recordcontainers/jdito/contentProcess.js +++ b/entity/Employee_entity/recordcontainers/jdito/contentProcess.js @@ -26,26 +26,57 @@ else users = users.map(function (user) { return [ - user[tools.NAME], - user[tools.TITLE], - user[tools.PARAMS][tools.ISACTIVE], - user[tools.PARAMS][tools.FIRSTNAME], - user[tools.PARAMS][tools.LASTNAME], - user[tools.PARAMS][tools.EMAIL], - user[tools.PARAMS][tools.EMAIL], - user[tools.DESCRIPTION], - user[tools.PARAMS][tools.CONTACTID], //8 - user[tools.PARAMS].department, - "", //password - "", //confirm_password - user[tools.ROLENAMES], //for filtering - EmployeeUtils.sliceUserId(user[tools.NAME]), - user[tools.PARAMS][tools.PHONE_ADDRESS] + user[tools.NAME], + user[tools.TITLE], + user[tools.PARAMS][tools.ISACTIVE], + user[tools.PARAMS][tools.FIRSTNAME], + user[tools.PARAMS][tools.LASTNAME], + user[tools.PARAMS][tools.EMAIL], + user[tools.PARAMS][tools.EMAIL], + user[tools.DESCRIPTION], + user[tools.PARAMS][tools.CONTACTID], //8 + user[tools.PARAMS].department, + "", //password + "", //confirm_password + user[tools.ROLENAMES], //for filtering + EmployeeUtils.sliceUserId(user[tools.NAME]), + user[tools.PARAMS][tools.PHONE_ADDRESS] ]; }); var filter = vars.get("$local.filter"); +// only show employees of the selected role in the role context +if (vars.get("$param.EmployeeWithRole_param")) +{ + var employeeWithRoleFilter = { + type:"row", + name:"ROLE_FILTER", + operator:"EQUAL", + value:vars.get("$param.EmployeeWithRole_param"), + key:vars.get("$param.EmployeeWithRole_param"), + contenttype:"TEXT" + }; + if (filter.filter != null) + { + // if the filter already has atleast one child condition, add the employeeWithRole condition + filter.filter = { + type:"group", + operator:"AND", + childs:[employeeWithRoleFilter, filter.filter] + }; + } + else + { + // otherwise you have to set a new filter object with only one child condition - the employeeWithRole condition + filter.filter = { + type:"group", + operator:"AND", + childs:[employeeWithRoleFilter] + }; + } +} + //TODO: this is a workaround that filters the records manually, it should be possible to filter the users with a tools.* method var filterFields = ["UID", "TITLE", "ISACTIVE", "FIRSTNAME", "LASTNAME", "EMAIL_ADDRESS", "", "DESCRIPTION", "CONTACT_ID", "DEPARTMENT", "", "", "ROLE_FILTER", "$$$LOOKUPFIELD$$$"]; var filterFns = { @@ -72,7 +103,9 @@ var filterFns = { if (pOperator == "CONTAINS") { pRow = [pRow[1], pRow[3], pRow[4], pRow[5]]; - var filterValues = pFilterValue.split(" ").filter(function (val) {return val.trim();}); + var filterValues = pFilterValue.split(" ").filter(function (val) { + return val.trim(); + }); return filterValues.every(function (filterValue) { return pRow.some(function (fieldValue) diff --git a/entity/Role_entity/Role_entity.aod b/entity/Role_entity/Role_entity.aod index bb4d3c0d11b0e9dec858fb7a19ce71896b60a984..15d7c2400e07b6453c4add622479b866c25404ce 100644 --- a/entity/Role_entity/Role_entity.aod +++ b/entity/Role_entity/Role_entity.aod @@ -143,6 +143,20 @@ <name>FilterRolesWithoutPermission</name> <usePermissions v="false" /> </entityProvider> + <entityConsumer> + <name>EmployeeWithRole</name> + <dependency> + <name>dependency</name> + <entityName>Employee_entity</entityName> + <fieldName>Employees</fieldName> + </dependency> + <children> + <entityParameter> + <name>EmployeeWithRole_param</name> + <valueProcess>%aditoprj%/entity/Role_entity/entityfields/employeewithrole/children/employeewithrole_param/valueProcess.js</valueProcess> + </entityParameter> + </children> + </entityConsumer> </entityFields> <recordContainers> <jDitoRecordContainer> diff --git a/entity/Role_entity/entityfields/employeewithrole/children/employeewithrole_param/valueProcess.js b/entity/Role_entity/entityfields/employeewithrole/children/employeewithrole_param/valueProcess.js new file mode 100644 index 0000000000000000000000000000000000000000..f1e485c836fb79efb9dcae64c34a89a7432a4d7a --- /dev/null +++ b/entity/Role_entity/entityfields/employeewithrole/children/employeewithrole_param/valueProcess.js @@ -0,0 +1,4 @@ +import("system.result"); +import("system.vars"); + +result.string(vars.get("$field.ROLENAME")); \ No newline at end of file diff --git a/neonContext/EmployeeRole/EmployeeRole.aod b/neonContext/EmployeeRole/EmployeeRole.aod index 0d7f026ed0920a637c045aa8e7df99af27ffc888..577a6e2b2980ba776aedcc6624bae898d94bcf99 100644 --- a/neonContext/EmployeeRole/EmployeeRole.aod +++ b/neonContext/EmployeeRole/EmployeeRole.aod @@ -18,5 +18,9 @@ <name>7edde309-9804-4d46-8ac0-d7642f66b584</name> <view>EmployeeRoleGenericEdit_view</view> </neonViewReference> + <neonViewReference> + <name>beabcd93-3636-43e4-ad98-f4177336d2b2</name> + <view>EmployeeRolePreviewFilter_view</view> + </neonViewReference> </references> </neonContext> diff --git a/neonView/EmployeePreview_view/EmployeePreview_view.aod b/neonView/EmployeePreview_view/EmployeePreview_view.aod index d908c43392b62f1c9e92ee188f1aefcf05cda857..e9e90dfc5bd87bc76f3e207f6a6d176e1d221b24 100644 --- a/neonView/EmployeePreview_view/EmployeePreview_view.aod +++ b/neonView/EmployeePreview_view/EmployeePreview_view.aod @@ -48,5 +48,10 @@ </entityFieldLink> </fields> </genericViewTemplate> + <neonViewReference> + <name>80b4f2c5-ce49-4c7a-8f07-6054c2b7e5af</name> + <entityField>EmployeeRoles</entityField> + <view>EmployeeRolePreviewFilter_view</view> + </neonViewReference> </children> </neonView> diff --git a/neonView/EmployeeRolePreviewFilter_view/EmployeeRolePreviewFilter_view.aod b/neonView/EmployeeRolePreviewFilter_view/EmployeeRolePreviewFilter_view.aod new file mode 100644 index 0000000000000000000000000000000000000000..ffa270a9fdcbfc76bd88c8bb321750439271ab11 --- /dev/null +++ b/neonView/EmployeeRolePreviewFilter_view/EmployeeRolePreviewFilter_view.aod @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<neonView xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.1.8" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/neonView/1.1.8"> + <name>EmployeeRolePreviewFilter_view</name> + <majorModelMode>DISTRIBUTED</majorModelMode> + <layout> + <noneLayout> + <name>layout</name> + </noneLayout> + </layout> + <children> + <tableViewTemplate> + <name>EmployeeRolesTable</name> + <isCreatable v="false" /> + <isDeletable v="false" /> + <isEditable v="false" /> + <title>Roles</title> + <columns> + <neonTableColumn> + <name>bb9468d2-18c2-4a5c-9b71-51ea34d32583</name> + <entityField>ROLE</entityField> + </neonTableColumn> + <neonTableColumn> + <name>22eff75c-01dd-4bb9-9706-a202e9178176</name> + <entityField>#UID</entityField> + </neonTableColumn> + </columns> + </tableViewTemplate> + </children> +</neonView> diff --git a/neonView/RoleMain_view/RoleMain_view.aod b/neonView/RoleMain_view/RoleMain_view.aod index debbc73ead58fba5837fd59042e5124a2c91f29e..811373bc470f04b1e473d85cbcda686c59a1651a 100644 --- a/neonView/RoleMain_view/RoleMain_view.aod +++ b/neonView/RoleMain_view/RoleMain_view.aod @@ -24,5 +24,10 @@ <entityField>TheirPermissions</entityField> <view>PermissionDetailFilter_view</view> </neonViewReference> + <neonViewReference> + <name>2baa9221-374a-4ac9-8e9f-09ac70d189b3</name> + <entityField>EmployeeWithRole</entityField> + <view>EmployeeFilter_view</view> + </neonViewReference> </children> </neonView>