using ce.autofac.extension; using learun.iapplication; using learun.util; using System.Collections.Generic; using System.Threading.Tasks; namespace learun.application { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.09.24 /// 描 述:岗位管理 /// public class PostBLL : BLLBase, PostIBLL, BLL { private readonly PostService postService = new PostService(); private readonly DepartmentIBLL _departmentIBLL; /// /// /// /// public PostBLL(DepartmentIBLL departmentIBLL) { _departmentIBLL = departmentIBLL; } #region 获取数据 /// /// 获取岗位数据列表(根据公司列表) /// /// 公司主键 /// public Task> GetList(string companyId) { return postService.GetList(companyId); } /// /// 获取岗位数据列表(根据公司列表) /// /// 公司主键 /// 部门Id /// 关键词 /// public Task> GetList(string companyId, string departmentId, string keyword) { return postService.GetList(companyId, departmentId, keyword); } /// /// 获取岗位数据列表(根据主键串) /// /// 根据主键串 /// public Task> GetListByPostIds(string postIds) { return postService.GetListByPostIds(postIds); } /// /// 获取树形结构数据 /// /// 公司主键 /// public async Task> GetTree(string companyId) { if (string.IsNullOrEmpty(companyId)) { return new List(); } List list = (List)await GetList(companyId); List treeList = new List(); List dList = new List(); foreach (var item in list) { TreeModel node = new TreeModel(); node.id = item.F_PostId; node.text = item.F_Name; dList.Add(item.F_DepartmentId); node.value = item.F_DepartmentId; node.showcheck = false; node.checkstate = 0; node.isexpand = true; node.parentId = item.F_ParentId; treeList.Add(node); } if (dList.Count > 0) { List departmentList = (List)await _departmentIBLL.GetListByKeys(dList); foreach (var item in treeList) { DepartmentEntity departmentEntity = departmentList.Find(t => t.F_DepartmentId == item.value); item.value = item.id; if (departmentEntity != null) { item.text = "【" + departmentEntity.F_FullName + "】" + item.text; } } } return treeList.ToTree(); } /// /// 获取岗位实体数据 /// /// 主键 /// public Task GetEntity(string keyValue) { return postService.GetEntity(keyValue); } #endregion 获取数据 #region 提交数据 /// /// 删除 /// /// 主键 public async Task Delete(string keyValue) { await postService.Delete(keyValue); } /// /// 保存岗位(新增、修改) /// /// 主键值 /// 岗位实体 /// public async Task SaveEntity(string keyValue, PostEntity postEntity) { await postService.SaveEntity(keyValue, postEntity); } #endregion 提交数据 #region 扩展方法 /// /// 判断是否是有关联 /// /// 开始岗位主键 /// 对方的岗位集合 /// private async Task HasRelation(string beginId, Dictionary map) { bool res = false; var entity = await postService.GetEntity(beginId); if (entity == null || entity.F_ParentId == "0") { res = false; } else if (map.ContainsKey(entity.F_ParentId)) { res = true; } else { res = await HasRelation(entity.F_ParentId, map); } return res; } /// /// 判断是否是上级 /// /// 自己的岗位 /// 对方的岗位 /// public async Task IsUp(string myId, string otherId) { bool res = false; if (!string.IsNullOrEmpty(myId) && !string.IsNullOrEmpty(otherId)) { string[] myList = myId.Split(','); string[] otherList = myId.Split(','); Dictionary map = new Dictionary(); foreach (var otherItem in otherList) { if (!map.ContainsKey(otherItem)) { map.Add(otherItem, 1); } } foreach (var myItem in myList) { if (await HasRelation(myItem, map)) { res = true; break; } } } return res; } /// /// 判断是否是下级 /// /// 自己的岗位 /// 对方的岗位 /// public async Task IsDown(string myId, string otherId) { bool res = false; if (!string.IsNullOrEmpty(myId) && !string.IsNullOrEmpty(otherId)) { string[] myList = myId.Split(','); string[] otherList = myId.Split(','); Dictionary map = new Dictionary(); foreach (var myItem in myList) { if (!map.ContainsKey(myItem)) { map.Add(myItem, 1); } } foreach (var otherItem in otherList) { if (await HasRelation(otherItem, map)) { res = true; break; } } } return res; } /// /// 获取上级岗位人员ID /// /// 岗位id /// 级数 /// public async Task> GetUpIdList(string strPostIds, int level) { List res = new List(); if (!string.IsNullOrEmpty(strPostIds) && level > 0 && level < 6) {// 现在支持1-5级查找 string[] postIdList = strPostIds.Split(','); bool isHave = false; // 判断是否指定级数的职位 foreach (var postId in postIdList) { isHave = false; var entity = await postService.GetEntity(postId); if (entity != null) { string parentId = entity.F_ParentId; PostEntity parentEntity = null; for (int i = 0; i < level; i++) { parentEntity = await postService.GetEntity(parentId); if (parentEntity != null) { parentId = parentEntity.F_ParentId; if (i == (level - 1)) { isHave = true; } } else { break; } } if (isHave) { if (parentEntity != null) { res.Add(parentEntity.F_PostId); } } } } } return res; } /// /// 获取下级岗位人员ID /// /// 岗位id /// 级数 /// public async Task> GetDownIdList(string strPostIds, int level) { List res = new List(); if (!string.IsNullOrEmpty(strPostIds) && level > 0 && level < 6) {// 现在支持1-5级查找 string[] postIdList = strPostIds.Split(','); bool isHave = false; // 判断是否指定级数的职位 List parentList = new List(); parentList.AddRange(postIdList); for (int i = 0; i < level; i++) { parentList = (List)await postService.GetIdList(parentList); if (parentList.Count > 0) { if (i == (level - 1)) { isHave = true; } } else { break; } } if (isHave) { res.AddRange(parentList); } } return res; } #endregion 扩展方法 } }