|
|
@@ -324,6 +324,14 @@ namespace Learun.Util.Operat |
|
|
|
userInfo.Description = userEntity.F_Description; |
|
|
|
|
|
|
|
userInfo.roleIds = userRelationIBLL.GetObjectIds(userEntity.F_UserId, 1); |
|
|
|
if (!string.IsNullOrEmpty(userInfo.roleIds)) |
|
|
|
{ |
|
|
|
var rolelist = userRelationIBLL.GetRoleListByUserId(userEntity.F_UserId); |
|
|
|
foreach (var roleEntity in rolelist) |
|
|
|
{ |
|
|
|
userInfo.roleName += roleEntity.F_FullName+ ","; |
|
|
|
} |
|
|
|
} |
|
|
|
userInfo.postIds = userRelationIBLL.GetObjectIds(userEntity.F_UserId, 2); |
|
|
|
userInfo.companyIds = companyIBLL.GetSubNodes(userEntity.F_CompanyId); |
|
|
|
userInfo.departmentIds = departmentIBLL.GetSubNodes(userEntity.F_CompanyId, userEntity.F_DepartmentId); |
|
|
|