You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

279 lines
8.9 KiB

using Microsoft.AspNetCore.Mvc;
using System;
using System.Threading.Tasks;
using Yitter.IdGenerator;
using Znyc.Cloudcar.Admin.AspNetCore.Controllers;
using Znyc.Cloudcar.Admin.AspNetCore.Entitys;
using Znyc.Cloudcar.Admin.AspNetCore.Mvc;
using Znyc.Cloudcar.Admin.AspNetCore.ViewModel;
using Znyc.Cloudcar.Admin.Commons.Entitys;
using Znyc.Cloudcar.Admin.Commons.Extensions;
using Znyc.Cloudcar.Admin.Commons.Log;
using Znyc.Cloudcar.Admin.Commons.Mapping;
using Znyc.Cloudcar.Admin.Security.Dtos;
using Znyc.Cloudcar.Admin.Security.Entitys;
using Znyc.Cloudcar.Admin.Security.IServices;
namespace Znyc.Cloudcar.Admin.WebApi.Controllers
{
/// <summary>
/// 组织机构接口
/// </summary>
[ApiController]
[Route("api/Security/[controller]")]
public class
OrganizeController : AreaApiController<OrganizeEntity, OrganizeOutputDto, OrganizeInputDto, IOrganizeService,
long>
{
/// <summary>
/// 构造函数
/// </summary>
/// <param name="service"></param>
public OrganizeController(IOrganizeService service) : base(service)
{
_service = service;
}
/// <summary>
/// 新增前处理数据
/// </summary>
/// <param name="info"></param>
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;
}
}
/// <summary>
/// 在更新数据前对数据的修改操作
/// </summary>
/// <param name="info"></param>
/// <returns></returns>
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;
}
}
/// <summary>
/// 在软删除数据前对数据的修改操作
/// </summary>
/// <param name="info"></param>
/// <returns></returns>
protected override void OnBeforeSoftDelete(OrganizeEntity info)
{
info.IsDeleted = true;
}
/// <summary>
/// 异步新增数据
/// </summary>
/// <param name="tinfo"></param>
/// <returns></returns>
[HttpPost("Insert")]
[FunctionAuthorize("Add")]
public async Task<IActionResult> InsertAsync(OrganizeInputDto tinfo)
{
CommonResult result = new CommonResult();
OrganizeEntity info = tinfo.MapTo<OrganizeEntity>();
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);
}
/// <summary>
/// 异步更新数据
/// </summary>
/// <param name="tinfo"></param>
/// <returns></returns>
[HttpPost("Update")]
[FunctionAuthorize("Edit")]
public async Task<IActionResult> 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);
}
/// <summary>
/// 获取组织机构适用于Vue 树形列表
/// </summary>
/// <returns></returns>
[HttpGet("GetAllOrganizeTreeTable")]
[FunctionAuthorize("List")]
public async Task<IActionResult> GetAllOrganizeTreeTable()
{
CommonResult result = new CommonResult();
try
{
System.Collections.Generic.List<OrganizeOutputDto> 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);
}
/// <summary>
/// 获取组织机构适用于Vue Tree树形
/// </summary>
/// <returns></returns>
[HttpGet("GetAllOrganizeTree")]
[FunctionAuthorize("List")]
public async Task<IActionResult> GetAllOrganizeTree()
{
CommonResult result = new CommonResult();
try
{
System.Collections.Generic.List<OrganizeOutputDto> 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);
}
/// <summary>
/// 异步批量禁用数据
/// </summary>
/// <param name="info"></param>
[HttpPost("SetEnabledMarktBatchAsync")]
[FunctionAuthorize("")]
public async Task<IActionResult> 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);
}
///// <summary>
///// 异步批量物理删除
///// </summary>
///// <param name="info"></param>
//[HttpDelete("DeleteBatchAsync")]
//[FunctionAuthorize("Delete")]
//public override async Task<IActionResult> 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);
//}
}
}