using Furion.DependencyInjection; using Furion.DistributedIDGenerator; using Furion.DynamicApiController; using Furion.FriendlyException; using Furion.JsonSerialization; using Mapster; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Myshipping.Application.Entity; using Myshipping.Application.Helper; using Myshipping.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 服务流程 /// [ApiDescriptionSettings("Application", Name = "ServiceWorkFlowBase", Order = 10)] public class ServiceWorkFlowBaseService : IServiceWorkFlowBaseService, IDynamicApiController, ITransient { private readonly SqlSugarRepository _serviceWorkFlowBaseRepository; private readonly SqlSugarRepository _serviceWorkFlowActivitiesInfoRepository; private readonly ILogger _logger; public ServiceWorkFlowBaseService(SqlSugarRepository serviceWorkFlowBaseRepository, ILogger logger, SqlSugarRepository serviceWorkFlowActivitiesInfoRepository) { _serviceWorkFlowBaseRepository = serviceWorkFlowBaseRepository; _serviceWorkFlowActivitiesInfoRepository = serviceWorkFlowActivitiesInfoRepository; } /// /// 保存 /// /// 服务流程详情 /// 返回回执 [HttpPost("/ServiceWorkFlowBase/Save")] public async Task Save([FromBody] ServiceWorkFlowBaseDto info) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { var id = await InnerSave(info); result.succ = true; result.msg = "保存成功"; result.ext = id; } catch (Exception ex) { result.succ = false; result.msg = $"保存服务项目异常,原因:{ex.Message}"; } return result; } #region 保存内部方法 /// /// 保存内部方法 /// /// 服务项目详情 /// 是否启用 /// 返回派车Id [SqlSugarUnitOfWork] private async Task InnerSave(ServiceWorkFlowBaseDto info, bool isSetEnable = false) { ServiceWorkFlowBaseInfo entity = info.Adapt(); if (isSetEnable) { entity.IS_ENABLE = 1; } if (entity == null) throw Oops.Oh($"服务项目不能为空", typeof(InvalidOperationException)); _logger.LogInformation($"服务项目保存 JSON={JSON.Serialize(entity)} user={UserManager.UserId}"); if (string.IsNullOrWhiteSpace(entity.PK_ID)) { entity.PK_ID = IDGen.NextID().ToString(); _serviceWorkFlowBaseRepository.Insert(entity); } else { var model = InnerGetInfo(entity.PK_ID); _logger.LogInformation($"更新状态前,获取原始记录 JSON={JSON.Serialize(model)}"); //if (!entity.STATUS_SKU_CODE.Equals(model.STATUS_SKU_CODE, StringComparison.OrdinalIgnoreCase)) //{ // ValidateServiceProject(entity, true); //} entity.UpdatedTime = DateTime.Now; entity.UpdatedUserId = UserManager.UserId; entity.UpdatedUserName = UserManager.Name; await _serviceWorkFlowBaseRepository.AsUpdateable(entity).IgnoreColumns(it => new { it.TenantId, it.TenantName, it.CreatedTime, it.CreatedUserId, it.CreatedUserName, it.IsDeleted, }).ExecuteCommandAsync(); } return entity.PK_ID; } #endregion #region 校验 /// /// 校验 /// /// 服务项目详情 /// 是否校验关系 /// private void ValidateServiceProject(ServiceWorkFlowBaseInfo entity, bool isCheckRelation = false) { //if (isCheckRelation && _serviceWorkFlowActivitiesInfoRepository.Any(a => a.STATUS_SKU_ID == entity.PK_ID)) //{ // _logger.LogInformation($"当前状态已关联服务流程不能修改"); // throw Oops.Oh($"当前状态已关联服务流程不能修改", typeof(InvalidOperationException)); //} } #endregion #region 单票查询 /// /// 单票查询 /// /// 状态主键 private ServiceWorkFlowBaseInfo InnerGetInfo(string pkId) { if (string.IsNullOrWhiteSpace(pkId)) { throw Oops.Oh($"状态主键不能为空", typeof(InvalidOperationException)); } var model = _serviceWorkFlowBaseRepository.AsQueryable().First(a => a.PK_ID == pkId); if (model == null) throw Oops.Oh($"状态获取失败,状态信息不存在或已作废", typeof(InvalidOperationException)); return model; } #endregion /// /// 保存并启用 /// /// 服务流程详情 /// 返回回执 public async Task SaveAndEnable(ServiceWorkFlowBaseDto info) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { var id = await InnerSave(info, true); result.succ = true; result.msg = "执行成功"; result.ext = id; } catch (Exception ex) { result.succ = false; result.msg = $"保存并启用状态异常,原因:{ex.Message}"; } return result; } /// /// 启用 /// /// 服务流程主键 /// 返回回执 public async Task SetEnable(string pkId) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { var model = InnerGetInfo(pkId); _logger.LogInformation($"更新状态前,获取原始记录 JSON={JSON.Serialize(model)}"); //ValidateServiceProject(model, true); model.UpdatedTime = DateTime.Now; model.UpdatedUserId = UserManager.UserId; model.UpdatedUserName = UserManager.Name; model.IS_ENABLE = 1; await _serviceWorkFlowBaseRepository.AsUpdateable(model).UpdateColumns(it => new { it.IS_ENABLE, it.UpdatedTime, it.UpdatedUserId, it.UpdatedUserName }).ExecuteCommandAsync(); result.succ = true; result.msg = "执行成功"; } catch (Exception ex) { result.succ = false; result.msg = $"执行启用异常,原因:{ex.Message}"; } return result; } /// /// 取消启用 /// /// 服务流程主键 /// 返回回执 public async Task SetUnEnable(string pkId) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { var model = InnerGetInfo(pkId); _logger.LogInformation($"更新状态前,获取原始记录 JSON={JSON.Serialize(model)}"); //ValidateServiceProject(model, true); model.UpdatedTime = DateTime.Now; model.UpdatedUserId = UserManager.UserId; model.UpdatedUserName = UserManager.Name; model.IS_ENABLE = 0; await _serviceWorkFlowBaseRepository.AsUpdateable(model).UpdateColumns(it => new { it.IS_ENABLE, it.UpdatedTime, it.UpdatedUserId, it.UpdatedUserName }).ExecuteCommandAsync(); result.succ = true; result.msg = "执行成功"; } catch (Exception ex) { result.succ = false; result.msg = $"执行启用异常,原因:{ex.Message}"; } return result; } /// /// 删除 /// /// 服务流程主键 /// 返回回执 public async Task Delete(string pkId) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { var model = InnerGetInfo(pkId); _logger.LogInformation($"更新服务项目前,获取原始记录 JSON={JSON.Serialize(model)}"); if (model.IS_ENABLE == 1) //ValidateServiceProject(model, true); model.UpdatedTime = DateTime.Now; model.UpdatedUserId = UserManager.UserId; model.UpdatedUserName = UserManager.Name; model.IsDeleted = true; await _serviceWorkFlowBaseRepository.AsUpdateable(model).UpdateColumns(it => new { it.IsDeleted, it.UpdatedTime, it.UpdatedUserId, it.UpdatedUserName }).ExecuteCommandAsync(); result.succ = true; result.msg = "执行成功"; } catch (Exception ex) { result.succ = false; result.msg = $"删除状态异常,原因:{ex.Message}"; } return result; } /// /// 复制 /// /// 服务流程主键 /// 返回回执 public async Task Copy(string pkId) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { var model = InnerGetInfo(pkId); _logger.LogInformation($"更新状态前,获取原始记录 JSON={JSON.Serialize(model)}"); //ValidateServiceProject(model, true); model.UpdatedTime = DateTime.Now; model.UpdatedUserId = UserManager.UserId; model.UpdatedUserName = UserManager.Name; model.IS_ENABLE = 0; await _serviceWorkFlowBaseRepository.AsUpdateable(model).UpdateColumns(it => new { it.IS_ENABLE, it.UpdatedTime, it.UpdatedUserId, it.UpdatedUserName }).ExecuteCommandAsync(); result.succ = true; result.msg = "执行成功"; } catch (Exception ex) { result.succ = false; result.msg = $"执行启用异常,原因:{ex.Message}"; } return result; } /// /// 获取服务流程详情 /// /// 服务流程主键 /// 返回回执 public async Task GetInfo(string pkId) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { var model = InnerGetInfo(pkId); var showModel = model.Adapt(); result.succ = true; result.ext = showModel; } catch (Exception ex) { result.succ = false; result.msg = $"获取服务流程详情异常,原因:{ex.Message}"; } return result; } /// /// 检索服务流程列表 /// /// 检索值 /// 最大返回行数(默认15) /// 返回回执 public async Task QueryList(string queryItem, int topNum = 15) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { var list = await _serviceWorkFlowBaseRepository.AsQueryable().Where(a => a.IS_ENABLE == 1 && !a.IsDeleted && (a.SERVICE_WORKFLOW_CODE.Contains(queryItem) || a.SERVICE_WORKFLOW_NAME.Contains(queryItem))) .Take(topNum).ToListAsync(); result.succ = true; result.ext = list.Adapt>(); } catch (Exception ex) { result.succ = false; result.msg = $"检索状态列表异常,原因:{ex.Message}"; } return result; } /// /// 服务流程台账查询 /// /// 服务流程台账查询请求 /// 返回结果 [HttpPost("/ServiceWorkFlowBase/GetPage")] public async Task> GetPageAsync([FromBody]QueryServiceWorkFlowBaseDto QuerySearch) { //制单日期 DateTime createBegin = DateTime.MinValue; DateTime createEnd = DateTime.MinValue; //更新日期 DateTime updateBegin = DateTime.MinValue; DateTime updateEnd = DateTime.MinValue; //制单日期 if (!string.IsNullOrWhiteSpace(QuerySearch.CreateBegin)) { if (!DateTime.TryParse(QuerySearch.CreateBegin, out createBegin)) throw Oops.Oh($"创建起始日期格式错误,{QuerySearch.CreateBegin}"); } if (!string.IsNullOrWhiteSpace(QuerySearch.CreateEnd)) { if (!DateTime.TryParse(QuerySearch.CreateEnd, out createEnd)) throw Oops.Oh($"创建结束日期格式错误,{QuerySearch.CreateEnd}"); createEnd = createEnd.AddDays(1); } //更新日期 if (!string.IsNullOrWhiteSpace(QuerySearch.UpdateBegin)) { if (!DateTime.TryParse(QuerySearch.UpdateBegin, out updateBegin)) throw Oops.Oh($"更新起始日期格式错误,{QuerySearch.UpdateBegin}"); } if (!string.IsNullOrWhiteSpace(QuerySearch.UpdateEnd)) { if (!DateTime.TryParse(QuerySearch.UpdateEnd, out updateEnd)) throw Oops.Oh($"更新结束日期格式错误,{QuerySearch.UpdateEnd}"); updateEnd = updateEnd.AddDays(1); } string entityOrderCol = "CreatedTime"; //这里因为返回给前端的台账数据是DTO,所以这里排序时候需要转换成Entity对应的字段 if (!string.IsNullOrWhiteSpace(QuerySearch.SortField)) entityOrderCol = MapsterExtHelper.GetAdaptProperty(QuerySearch.SortField); var entities = await _serviceWorkFlowBaseRepository.AsQueryable() .WhereIF(createBegin != DateTime.MinValue, t => t.CreatedTime >= createBegin) .WhereIF(createEnd != DateTime.MinValue, t => t.CreatedTime < createEnd) .WhereIF(updateBegin != DateTime.MinValue, t => t.UpdatedTime.HasValue && t.UpdatedTime.Value >= updateBegin) .WhereIF(updateEnd != DateTime.MinValue, t => t.UpdatedTime.HasValue && t.UpdatedTime.Value < updateEnd) .WhereIF(!string.IsNullOrWhiteSpace(QuerySearch.IsEnable) && QuerySearch.IsEnable == "1", t => t.IS_ENABLE == 1) .WhereIF(!string.IsNullOrWhiteSpace(QuerySearch.IsEnable) && QuerySearch.IsEnable == "2", t => t.IS_ENABLE == 0) .WhereIF(!string.IsNullOrWhiteSpace(QuerySearch.ServiceWorkflowName), t => t.SERVICE_WORKFLOW_NAME.Contains(QuerySearch.ServiceWorkflowName) || t.SERVICE_WORKFLOW_CODE.Contains(QuerySearch.ServiceWorkflowName)) .WhereIF(!string.IsNullOrWhiteSpace(QuerySearch.ServiceWorkflowNote), t => t.SERVICE_WORKFLOW_NOTE.Contains(QuerySearch.ServiceWorkflowNote)) .WhereIF(!string.IsNullOrWhiteSpace(QuerySearch.CreateUser), t => t.CreatedUserName.Contains(QuerySearch.CreateUser)) .WhereIF(!string.IsNullOrWhiteSpace(QuerySearch.UpdateUser), t => t.UpdatedUserName.Contains(QuerySearch.UpdateUser)) .OrderBy(entityOrderCol + (QuerySearch.descSort ? " asc " : " desc ")) .ToPagedListAsync(QuerySearch.PageNo, QuerySearch.PageSize); return entities.Adapt>(); } /// /// 发布服务流程 /// /// 服务流程主键 /// 返回回执 public async Task PublishRelease(string pkId) { return new TaskManageOrderResultDto(); } #region 获取展示服务流程时间轴列表 /// /// 获取展示服务流程时间轴列表 /// /// 服务流程主键 /// 返回回执 public async Task GetShowTimeLine(string pkId) { return new TaskManageOrderResultDto(); } #endregion } }