using Microsoft.AspNetCore.Mvc; using System; using System.Threading.Tasks; using Yitter.IdGenerator; using Znyc.Recruitment.Admin.AspNetCore.Controllers; using Znyc.Recruitment.Admin.AspNetCore.Entitys; using Znyc.Recruitment.Admin.AspNetCore.Mvc; using Znyc.Recruitment.Admin.AspNetCore.ViewModel; using Znyc.Recruitment.Admin.Commons.Entitys; using Znyc.Recruitment.Admin.Commons.Extensions; using Znyc.Recruitment.Admin.Commons.Log; using Znyc.Recruitment.Admin.Commons.Mapping; using Znyc.Recruitment.Admin.Security.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; using Znyc.Recruitment.Admin.Security.IServices; namespace Znyc.Recruitment.Admin.WebApi.Controllers { /// /// 组织机构接口 /// [ApiController] [Route("api/Security/[controller]")] public class OrganizeController : AreaApiController { /// /// 构造函数 /// /// public OrganizeController(IOrganizeService service) : base(service) { _service = service; } /// /// 新增前处理数据 /// /// protected override void OnBeforeInsert(OrganizeEntity info) { info.IsEnabled = true; info.CreatedTime = DateTime.Now; info.CreatedUserId = CurrentUser.UserId; info.IsDeleted = false; if (info.SortCode == 0) { info.SortCode = 99; } if (info.ParentId == 0) { info.Layers = 1; info.ParentId = 0; } else { info.Layers = _service.Get(info.ParentId).Layers + 1; } } /// /// 在更新数据前对数据的修改操作 /// /// /// protected override void OnBeforeUpdate(OrganizeEntity info) { info.ModifiedUserId = CurrentUser.UserId; info.ModifiedTime = DateTime.Now; if (string.IsNullOrEmpty(info.ParentId.ToString())) { info.Layers = 1; info.ParentId = 0; } else { info.Layers = _service.Get(info.ParentId).Layers + 1; } } /// /// 在软删除数据前对数据的修改操作 /// /// /// protected override void OnBeforeSoftDelete(OrganizeEntity info) { info.IsDeleted = true; } /// /// 异步新增数据 /// /// /// [HttpPost("Insert")] [FunctionAuthorize("Add")] public async Task InsertAsync(OrganizeInputDto tinfo) { CommonResult result = new CommonResult(); OrganizeEntity info = tinfo.MapTo(); OnBeforeInsert(info); info.Id = YitIdHelper.NextId(); int bl = await _service.InsertAsync(info).ConfigureAwait(false); if (bl > 0) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } /// /// 异步更新数据 /// /// /// [HttpPost("Update")] [FunctionAuthorize("Edit")] public async Task UpdateAsync(OrganizeInputDto tinfo) { CommonResult result = new CommonResult(); OrganizeEntity info = _service.Get(tinfo.Id); info.ParentId = tinfo.ParentId; info.FullName = tinfo.FullName; info.EnCode = tinfo.EnCode; info.ManagerName = tinfo.ManagerName; info.CategoryName = tinfo.CategoryName; info.SortCode = tinfo.SortCode; info.Description = tinfo.Description; info.IsEnabled = tinfo.IsEnabled; OnBeforeUpdate(info); bool bl = await _service.UpdateAsync(info, tinfo.Id).ConfigureAwait(false); if (bl) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } /// /// 获取组织机构适用于Vue 树形列表 /// /// [HttpGet("GetAllOrganizeTreeTable")] [FunctionAuthorize("List")] public async Task GetAllOrganizeTreeTable() { CommonResult result = new CommonResult(); try { System.Collections.Generic.List list = await _service.GetAllOrganizeTreeTable(); result.Success = true; result.ErrCode = ErrCode.successCode; result.ResData = list; } catch (Exception ex) { Log4NetHelper.Error("获取组织结构异常", ex); result.ErrMsg = ErrCode.err40110; result.ErrCode = "40110"; } return ToJsonContent(result); } /// /// 获取组织机构适用于Vue Tree树形 /// /// [HttpGet("GetAllOrganizeTree")] [FunctionAuthorize("List")] public async Task GetAllOrganizeTree() { CommonResult result = new CommonResult(); try { System.Collections.Generic.List list = await _service.GetAllOrganizeTreeTable(); result.Success = true; result.ErrCode = ErrCode.successCode; result.ResData = list; } catch (Exception ex) { Log4NetHelper.Error("获取组织结构异常", ex); result.ErrMsg = ErrCode.err40110; result.ErrCode = "40110"; } return ToJsonContent(result); } /// /// 异步批量禁用数据 /// /// [HttpPost("SetEnabledMarktBatchAsync")] [FunctionAuthorize("")] public async Task SetEnabledMarktBatchAsync(UpdateEnableViewModel info) { CommonResult result = new CommonResult(); string where = string.Empty; if (typeof(int) == typeof(string)) { @where = "id in ('" + info.Ids.Join(",").Trim(',').Replace(",", "','") + "')"; } else if (typeof(int) == typeof(int)) { @where = "id in (" + info.Ids.Join(",") + ")"; } if (!string.IsNullOrEmpty(where)) { bool bl = false; if (info.Flag == "1") { bl = true; } bool blResult = await _service.SetEnabledMarkByWhereAsync(bl, where, CurrentUser.UserId); if (blResult) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } } return ToJsonContent(result); } ///// ///// 异步批量物理删除 ///// ///// //[HttpDelete("DeleteBatchAsync")] //[FunctionAuthorize("Delete")] //public override async Task DeleteBatchAsync(DeletesInputDto info) //{ // var result = new CommonResult(); // if (info.Ids.Length > 0) // { // result = await _service.DeleteBatchWhereAsync(info).ConfigureAwait(false); // if (result.Success) // { // result.ErrCode = ErrCode.successCode; // result.ErrMsg = ErrCode.err0; // } // else // { // result.ErrCode = "43003"; // } // } // return ToJsonContent(result); //} } }