using Newtonsoft.Json; using System.Collections.Generic; using System.Linq; using Znyc.Recruitment.Admin.Commons.Cache; using Znyc.Recruitment.Admin.Commons.Json; using Znyc.Recruitment.Admin.Commons.Mapping; using Znyc.Recruitment.Admin.Commons.Tree; using Znyc.Recruitment.Admin.Security.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; using Znyc.Recruitment.Admin.Security.IRepositories; using Znyc.Recruitment.Admin.Security.Repositories; namespace Znyc.Recruitment.Admin.Security.Application { /// /// 地区 /// public class AreaApp { private readonly IAreaRepository service = new AreaRepository(); #region 适配于管理后端 /// /// 树形展开treeview需要,数据字典管理页面 /// /// public List ItemsTreeViewJson() { List list = new List(); List listFunction = service.GetListWhere("Layers in (0,1,2)").OrderBy(t => t.SortCode).ToList(); list = TreeViewJson(listFunction, 0); return list; } //public List AreaTreeViewJson() //{ //string where = "1=1 and Layers in(0,1,2)"; //bool order = orderByDir == "asc" ? false : true; //if (!string.IsNullOrEmpty(keywords)) //{ // where += string.Format(" and (FullName like '%{0}%' or EnCode like '%{0}%')", keywords); //} //List list = _service.GetListWhere(where).OrderBy(t => t.SortCode).ToList().MapTo(); //return ToJsonContent(list); //List list = new List(); //List listFunction = service.GetListWhere("Layers in (3,4)").OrderBy(t => t.SortCode).ToList(); //list = TreeViewJson(listFunction, ""); //return list; //} /// /// /// /// /// public List TreeViewJson(List data, long ParentId) { List list = new List(); List ChildNodeList = data.FindAll(t => t.ParentId == ParentId).ToList(); foreach (AreaEntity entity in ChildNodeList) { TreeViewModel treeViewModel = new TreeViewModel { nodeId = entity.Id, pid = entity.ParentId, text = entity.FullName, nodes = ChildrenTreeViewList(data, entity.Id), tags = entity.Id }; list.Add(treeViewModel); } return list; } /// /// /// /// /// public List ChildrenTreeViewList(List data, long ParentId) { List listChildren = new List(); List ChildNodeList = data.FindAll(t => t.ParentId == ParentId).ToList(); foreach (AreaEntity entity in ChildNodeList) { TreeViewModel treeViewModel = new TreeViewModel { nodeId = entity.Id, pid = entity.ParentId, text = entity.FullName, nodes = ChildrenTreeViewList(data, entity.Id), tags = entity.Id }; listChildren.Add(treeViewModel); } return listChildren; } #endregion 适配于管理后端 #region 用于uniapp下拉选项 /// /// 获取所有可用的地区,用于uniapp下拉选项 /// /// public List GetAllByEnable() { List list = new List(); CacheHelper cacheHelper = new CacheHelper(); list = JsonConvert.DeserializeObject>(cacheHelper.Get("Area_Enable_Uniapp") .ToJson()); if (list == null || list.Count <= 0) { List listFunction = service.GetAllByIsNotDeleteAndEnabledMark("Layers in (0,1,2)") .OrderBy(t => t.SortCode).ToList(); list = UniappViewJson(listFunction, 0); cacheHelper.Add("Area_Enable_Uniapp", list); } return list; } /// /// 获取省、市、县/区三级可用的地区,用于uniapp下拉选项 /// /// public List GetProvinceToAreaByEnable() { List list = new List(); CacheHelper cacheHelper = new CacheHelper(); list = JsonConvert.DeserializeObject>(cacheHelper .Get("Area_ProvinceToArea_Enable_Uniapp").ToJson()); if (list == null || list.Count <= 0) { List listFunctionTemp = service.GetAllByIsNotDeleteAndEnabledMark("Layers in (1,2,3)").OrderBy(t => t.Id) .ToList(); List listFunction = new List(); foreach (AreaEntity item in listFunctionTemp) { if (item.Layers == 1) { item.ParentId = 0; } listFunction.Add(item); } list = UniappViewJson(listFunction, 0); cacheHelper.Add("Area_ProvinceToArea_Enable_Uniapp", list); } return list; } /// /// /// /// /// public List UniappViewJson(List data, long ParentId) { List list = new List(); List ChildNodeList = data.FindAll(t => t.ParentId == ParentId).ToList(); foreach (AreaEntity entity in ChildNodeList) { AreaPickerOutputDto treeViewModel = new AreaPickerOutputDto { value = entity.Id, label = entity.FullName, children = ChildrenUniappViewList(data, entity.Id) }; list.Add(treeViewModel); } return list; } /// /// /// /// /// public List ChildrenUniappViewList(List data, long ParentId) { List listChildren = new List(); List ChildNodeList = data.FindAll(t => t.ParentId == ParentId).ToList(); foreach (AreaEntity entity in ChildNodeList) { AreaPickerOutputDto treeViewModel = new AreaPickerOutputDto { value = entity.Id, label = entity.FullName, children = ChildrenUniappViewList(data, entity.Id) }; listChildren.Add(treeViewModel); } return listChildren; } #endregion 用于uniapp下拉选项 #region 适用于select2省市县区级联选择 /// /// 获取省可用的地区,用于select2下拉选项 /// /// public List GetProvinceAll() { List list = new List(); CacheHelper cacheHelper = new CacheHelper(); list = JsonConvert.DeserializeObject>(cacheHelper .Get("Area_ProvinceToArea_Select2").ToJson()); if (list == null || list.Count <= 0) { list = service.GetAllByIsNotDeleteAndEnabledMark("Layers =1").OrderBy(t => t.Id).ToList() .MapTo(); cacheHelper.Add("Area_ProvinceToArea_Select2", list); } return list; } /// /// 获取城市,用于select2下拉选项 /// /// 省份Id /// public List GetCityByProvinceId(long id) { List list = new List(); CacheHelper cacheHelper = new CacheHelper(); list = JsonConvert.DeserializeObject>(cacheHelper .Get("Area_CityToArea_Enable_Select2" + id).ToJson()); if (list == null || list.Count <= 0) { string sqlWhere = string.Format("ParentId='{0}'", id); list = service.GetAllByIsNotDeleteAndEnabledMark(sqlWhere).OrderBy(t => t.Id).ToList() .MapTo(); cacheHelper.Add("Area_CityToArea_Enable_Select2" + id, list); } return list; } /// /// 获取县区,用于select2下拉选项 /// /// 城市Id /// public List GetDistrictByCityId(long id) { List list = new List(); CacheHelper cacheHelper = new CacheHelper(); list = JsonConvert.DeserializeObject>(cacheHelper .Get("Area_DistrictToArea_Enable_Select2" + id).ToJson()); if (list == null || list.Count <= 0) { string sqlWhere = string.Format("ParentId='{0}'", id); list = service.GetAllByIsNotDeleteAndEnabledMark(sqlWhere).OrderBy(t => t.Id).ToList() .MapTo(); cacheHelper.Add("Area_DistrictToArea_Enable_Select2" + id, list); } return list; } #endregion 适用于select2省市县区级联选择 } }