Skip to content
Snippets Groups Projects
Commit c4cc4666 authored by Simon Leipold's avatar Simon Leipold
Browse files

Permissions - fixed bug where asys_permissionset was not found caused by wrong alias

parent 019476dc
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ var permSetId = PermissionUtil.getSet(roleName, entity, accesstype, field);
var fieldWhereCond = "ASYS_PERMISSIONSET.FIELD_ID is null";
if (field != "") {
fieldWhereCond = newWhere("ASYS_PERMISSIONSET.FIELD_ID", field);
fieldWhereCond = newWhere("ASYS_PERMISSIONSET.FIELD_ID", field, null, null, alias);
}
if (permSetId != "") {
......
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