浏览代码

流程中,获取当前角色名称功能缺失,写入后台数据

大厂分支
liangkun 4 年前
父节点
当前提交
5eb0bee378
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. +8
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Util/Learun.Util.Operat/OperatorHelper.cs

+ 8
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Util/Learun.Util.Operat/OperatorHelper.cs 查看文件

@@ -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);


正在加载...
取消
保存