using Furion.DependencyInjection; using Furion.DistributedIDGenerator; using Furion.DynamicApiController; using Furion.FriendlyException; using Furion.JsonSerialization; using Mapster; using Microsoft.AspNetCore.Mvc; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.Extensions.Logging; using Myshipping.Application.Entity; using Myshipping.Application.Helper; using Myshipping.Core; using Myshipping.Core.Entity; using SqlSugar; 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 SqlSugarRepository _serviceWorkFlowProjectRelationRepository; private readonly SqlSugarRepository _serviceWorkFlowActivitiesRelationRepository; private readonly SqlSugarRepository _serviceWorkFlowActivitiesSubRelationRepository; private readonly ILogger _logger; public ServiceWorkFlowBaseService(SqlSugarRepository serviceWorkFlowBaseRepository, ILogger logger, SqlSugarRepository serviceWorkFlowActivitiesInfoRepository, SqlSugarRepository serviceWorkFlowProjectRelationRepository, SqlSugarRepository serviceWorkFlowActivitiesRelationRepository, SqlSugarRepository serviceWorkFlowActivitiesSubRelationRepository) { _serviceWorkFlowBaseRepository = serviceWorkFlowBaseRepository; _serviceWorkFlowActivitiesInfoRepository = serviceWorkFlowActivitiesInfoRepository; _serviceWorkFlowProjectRelationRepository = serviceWorkFlowProjectRelationRepository; _serviceWorkFlowActivitiesRelationRepository = serviceWorkFlowActivitiesRelationRepository; _logger = logger; _serviceWorkFlowActivitiesSubRelationRepository = serviceWorkFlowActivitiesSubRelationRepository; } /// /// 保存 /// /// 服务流程详情 /// 返回回执 [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 保存服务流程活动 /// /// 保存服务流程活动 /// /// 保存服务流程活动详情 /// 返回回执 [HttpPost("/ServiceWorkFlowBase/SaveWFActivities")] public async Task SaveWFActivities([FromBody] ServiceWorkFlowActivitiesDto info) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { /* 1、状态有记录。 2、同一状态不能有相同的显示名称 3、已经关联服务流程的,并且已经发布的不能修改内容。(只可以新增) */ var entity = info.Adapt(); if (string.IsNullOrWhiteSpace(entity.STATUS_SKU_ID)) { throw Oops.Oh($"状态不能为空", typeof(InvalidOperationException)); } if (string.IsNullOrWhiteSpace(entity.SHOW_NAME) || entity.SHOW_NAME.Length < 2) { throw Oops.Oh($"状态显示名称不能为空,并且不能少于2个字符", typeof(InvalidOperationException)); } //同一状态不能有相同的显示名称 var checkList = _serviceWorkFlowActivitiesInfoRepository.AsQueryable() .Where(a=>a.STATUS_SKU_ID == entity.STATUS_SKU_ID && a.SHOW_NAME == entity.SHOW_NAME && a.PK_ID != entity.PK_ID).ToList(); if (checkList.Count > 0) 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(); _serviceWorkFlowActivitiesInfoRepository.Insert(entity); } else { //已经关联服务流程的,并且已经发布的不能修改内容。(只可以新增) var wfRelation = _serviceWorkFlowActivitiesRelationRepository.AsQueryable() .Where(a=>a.SERVICE_ACTIVITIES_ID == entity.PK_ID) .ToList(); if (wfRelation.Count > 0) { var currArg = wfRelation.Select(a=>a.SERVICE_WORKFLOW_ID).Distinct().ToList(); if (_serviceWorkFlowBaseRepository.AsQueryable().Any(a => currArg.Any(b => b == a.PK_ID) && (!string.IsNullOrWhiteSpace(a.RELEASE_VERSION) || a.IS_LOCK == 1))) { throw Oops.Oh($"当前状态已关联发布流程,不能保存", typeof(InvalidOperationException)); } } entity.UpdatedTime = DateTime.Now; entity.UpdatedUserId = UserManager.UserId; entity.UpdatedUserName = UserManager.Name; await _serviceWorkFlowActivitiesInfoRepository.AsUpdateable(entity).IgnoreColumns(it => new { it.TenantId, it.TenantName, it.CreatedTime, it.CreatedUserId, it.CreatedUserName, it.IsDeleted, }).ExecuteCommandAsync(); } result.succ = true; result.msg = "保存成功"; result.ext = entity.PK_ID; } catch (Exception ex) { result.succ = false; result.msg = $"保存服务流程活动异常,原因:{ex.Message}"; } return result; } #endregion #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)); if(entity.BELONG_TENANT_ID == 0) { entity.BELONG_TENANT_ID = UserManager.TENANT_ID; entity.BELONG_TENANT_NAME = UserManager.TENANT_NAME; } _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 (info.StatusSkuList != null && info.StatusSkuList.Count > 0) { if (info.StatusSkuList.Any(a => a.IsContainsSub == 1 && (a.SubList == null || a.SubList.Count == 0))) { throw Oops.Oh($"状态已选择包含子状态,子状态列表不能为空", typeof(InvalidOperationException)); } } ValidateServiceWorkFlow(entity, OperateTypeEnum.Save); 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(); //批量删除服务流程与服务项目关系(物理删除) _serviceWorkFlowProjectRelationRepository.EntityContext.Deleteable() .Where(a => a.SERVICE_WORKFLOW_ID == entity.PK_ID); //批量删除服务流程与服务活动关系(物理删除) _serviceWorkFlowActivitiesRelationRepository.EntityContext.Deleteable() .Where(a => a.SERVICE_WORKFLOW_ID == entity.PK_ID); //批量删除服务流程活动与子活动的关系(物理删除) _serviceWorkFlowActivitiesSubRelationRepository.EntityContext.Deleteable() .Where(a => a.SERVICE_WORKFLOW_ID == entity.PK_ID); } //服务流程与服务项目关系 if (info.ServiceProject != null && !string.IsNullOrWhiteSpace(info.ServiceProject.PKId)) { var wfRelationProject = new ServiceWorkFlowProjectRelation { PK_ID = IDGen.NextID().ToString(), SERVICE_WORKFLOW_ID = entity.PK_ID, SERVICE_PROJECT_ID = info.ServiceProject.PKId, }; //插入关系 await _serviceWorkFlowProjectRelationRepository.InsertAsync(wfRelationProject); } //服务流程与服务活动关系 if (info.StatusSkuList != null && info.StatusSkuList.Count > 0) { info.StatusSkuList.ForEach(async sku => { var wfRelationActivities = new ServiceWorkFlowActivitiesRelation { PK_ID = IDGen.NextID().ToString(), SERVICE_WORKFLOW_ID = entity.PK_ID, SERVICE_ACTIVITIES_ID = sku.PKId, IS_CONTAINS_SUB = sku.IsContainsSub, VAL_TYPE = !string.IsNullOrWhiteSpace(sku.ValType)? sku.ValType: StatusSKUValTypeEnum.DATETIME.ToString() }; await _serviceWorkFlowActivitiesRelationRepository.InsertAsync(wfRelationActivities); //处理子状态 if(sku.IsContainsSub == 1) { sku.SubList.ForEach(async sub => { var wfRelationActivitiesSub = new ServiceWorkFlowActivitiesSubRelation { PK_ID = IDGen.NextID().ToString(), SERVICE_WORKFLOW_ID = entity.PK_ID, SERVICE_ACTIVITIES_ID = sku.PKId, SUB_SERVICE_ACTIVITIES_ID = sub.PKId }; await _serviceWorkFlowActivitiesSubRelationRepository.InsertAsync(wfRelationActivitiesSub); }); } }); } return entity.PK_ID; } #endregion #region 校验 /// /// 校验 /// /// 服务流程详情 /// 操作类型枚举 /// private void ValidateServiceWorkFlow(ServiceWorkFlowBaseInfo entity, OperateTypeEnum opTypeEnum) { /* 1、服务流程代码和名称不能低于2个字符。 */ if (opTypeEnum == OperateTypeEnum.Save) { if (_serviceWorkFlowProjectRelationRepository.AsQueryable().Any(a => a.SERVICE_PROJECT_ID == entity.PK_ID)) { throw Oops.Oh($"当前服务项目已关联服务流程,不能修改", typeof(InvalidOperationException)); } if (entity.SERVICE_WORKFLOW_CODE.Length < 2 || entity.SERVICE_WORKFLOW_NAME.Length < 2) throw Oops.Oh($"服务流程代码和状态名称不能小于2个字符,不能修改", 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 #region 单票查询显示详情 /// /// 单票查询显示详情 /// /// 服务流程主键 private ServiceWorkFlowBaseShowDto InnerGetShowInfo(string pkId) { var model = InnerGetInfo(pkId); var showModel = model.Adapt(); /* 1、获取关联的服务项目(单条) 2、获取关联的服务活动列表(多条) */ var projectInfo = _serviceWorkFlowProjectRelationRepository.AsQueryable() .LeftJoin((rela, prj) => rela.SERVICE_PROJECT_ID == prj.PK_ID) .Where(rela => rela.SERVICE_WORKFLOW_ID == pkId) .Select((rela, prj) => prj).First(); if (projectInfo != null) { showModel.ServiceProject = projectInfo.Adapt(); } var activitiesList = _serviceWorkFlowActivitiesRelationRepository.AsQueryable() .LeftJoin((rela, act) => rela.SERVICE_ACTIVITIES_ID == act.PK_ID && rela.SERVICE_WORKFLOW_ID == pkId) .LeftJoin((rela, act, sku) => act.STATUS_SKU_ID == sku.PK_ID) .Select((rela, act, sku) => new { Act = act, Sku = sku, SortNo = rela.SORT_NO, IsSub = rela.IS_CONTAINS_SUB,ValType = rela.VAL_TYPE }) .ToList(); if (activitiesList.Count > 0) { showModel.StatusSkuList = activitiesList.OrderBy(a => a.SortNo) .Select(a => { var actModel = a.Act.Adapt(); actModel.SortNo = a.SortNo; actModel.IsContainsSub = a.IsSub; actModel.ValType = a.ValType; actModel.statusSkuBase = a.Sku.Adapt(); return actModel; }).ToList(); } var activitiesSubList = _serviceWorkFlowActivitiesSubRelationRepository.AsQueryable() .LeftJoin((rela, act) => rela.SUB_SERVICE_ACTIVITIES_ID == act.PK_ID && rela.SERVICE_WORKFLOW_ID == pkId) .LeftJoin((rela, act, sku) => act.STATUS_SKU_ID == sku.PK_ID) .Select((rela, act, sku) => new { Act = act, Sku = sku, SortNo = rela.SORT_NO, ParentId = rela.SERVICE_ACTIVITIES_ID }) .ToList(); if(activitiesSubList.Count > 0) { var subList = activitiesSubList .GroupBy(a => a.ParentId) .Select(a => { var currArg = a.ToList(); return new { Key = a.Key, SubList = currArg.OrderBy(b=>b.SortNo) .Select(b => { var actModel = b.Act.Adapt(); actModel.SortNo = b.SortNo; actModel.statusSkuBase = b.Sku.Adapt(); return actModel; }).ToList() }; }); showModel.StatusSkuList.GroupJoin(subList, l => l.PKId, r => r.Key, (l, r) => { var currArg = r.ToList(); if (currArg.Count == 0) return l; l.SubList = currArg.FirstOrDefault().SubList.ToList(); return l; }).ToList(); } return showModel; } #endregion #region 保存并启用 /// /// 保存并启用 /// /// 服务流程详情 /// 返回回执 [HttpPost("/ServiceWorkFlowBase/SaveAndEnable")] 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; } #endregion #region 处理服务流程内部方法 /// /// 处理服务流程内部方法 /// /// 服务流程详情 /// 操作类型 /// 返回回执 private async Task InnerExcuteServiceWF(ServiceWorkFlowBaseInfo model, OperateTypeEnum opTypeEnum) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); result.bno = model?.SERVICE_WORKFLOW_NAME; try { if (model == null) throw Oops.Oh($"服务流程获取失败,服务流程信息不存在或已作废", typeof(InvalidOperationException)); _logger.LogInformation($"更新服务流程前,获取原始记录 JSON={JSON.Serialize(model)}"); model.UpdatedTime = DateTime.Now; model.UpdatedUserId = UserManager.UserId; model.UpdatedUserName = UserManager.Name; if (opTypeEnum == OperateTypeEnum.SetEnable) { model.IS_ENABLE = 1; await _serviceWorkFlowBaseRepository.AsUpdateable(model).UpdateColumns(it => new { it.IS_ENABLE, it.UpdatedTime, it.UpdatedUserId, it.UpdatedUserName }).ExecuteCommandAsync(); } else if (opTypeEnum == OperateTypeEnum.SetUnEnable) { ValidateServiceWorkFlow(model, opTypeEnum); model.IS_ENABLE = 0; await _serviceWorkFlowBaseRepository.AsUpdateable(model).UpdateColumns(it => new { it.IS_ENABLE, it.UpdatedTime, it.UpdatedUserId, it.UpdatedUserName }).ExecuteCommandAsync(); } else if (opTypeEnum == OperateTypeEnum.Delete) { ValidateServiceWorkFlow(model, opTypeEnum); 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; } #endregion /// /// 启用 /// /// 服务流程主键数组 /// 返回回执 [HttpPost("/ServiceWorkFlowBase/SetEnable")] public async Task SetEnable([FromBody]string[] pkIds) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { if (pkIds.Length == 0) { throw Oops.Oh($"服务流程主键数组不能为空", typeof(InvalidOperationException)); } var list = _serviceWorkFlowBaseRepository.AsQueryable() .Where(a => pkIds.Contains(a.PK_ID)).ToList(); if (list.Count == 0) throw Oops.Oh($"服务流程获取失败,请服务流程信息是否存在", typeof(InvalidOperationException)); if (list.Count != pkIds.Length) throw Oops.Oh($"部分服务流程获取失败,请服务流程信息是否存在", typeof(InvalidOperationException)); List rltList = new List(); list.ForEach(pr => { rltList.Add(InnerExcuteServiceWF(pr, OperateTypeEnum.SetUnEnable).GetAwaiter().GetResult()); }); result.succ = true; result.msg = rltList.FirstOrDefault().msg; result.ext = rltList; var succ = rltList.Count(x => x.succ); var fail = rltList.Count(x => !x.succ); if (succ > 0) { result.batchTotal = succ.ToString(); } else { result.batchTotal = "- "; } if (fail > 0) { result.batchTotal += "/" + fail.ToString(); } else { result.batchTotal += " -"; } } catch (Exception ex) { result.succ = false; result.msg = $"启用服务项目异常,原因:{ex.Message}"; } return result; } /// /// 取消启用 /// /// 服务流程主键数组 /// 返回回执 [HttpPost("/ServiceWorkFlowBase/SetUnEnable")] public async Task SetUnEnable([FromBody]string[] pkIds) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { if (pkIds.Length == 0) { throw Oops.Oh($"服务流程主键数组不能为空", typeof(InvalidOperationException)); } var list = _serviceWorkFlowBaseRepository.AsQueryable() .Where(a => pkIds.Contains(a.PK_ID)).ToList(); if (list.Count == 0) throw Oops.Oh($"服务流程获取失败,请服务流程信息是否存在", typeof(InvalidOperationException)); if (list.Count != pkIds.Length) throw Oops.Oh($"部分服务流程获取失败,请服务流程信息是否存在", typeof(InvalidOperationException)); List rltList = new List(); list.ForEach(pr => { rltList.Add(InnerExcuteServiceWF(pr, OperateTypeEnum.SetUnEnable).GetAwaiter().GetResult()); }); result.succ = true; result.msg = rltList.FirstOrDefault().msg; result.ext = rltList; var succ = rltList.Count(x => x.succ); var fail = rltList.Count(x => !x.succ); if (succ > 0) { result.batchTotal = succ.ToString(); } else { result.batchTotal = "- "; } if (fail > 0) { result.batchTotal += "/" + fail.ToString(); } else { result.batchTotal += " -"; } } catch (Exception ex) { result.succ = false; result.msg = $"启用服务项目异常,原因:{ex.Message}"; } return result; } /// /// 删除 /// /// 服务流程主键 /// 返回回执 [HttpPost("/ServiceWorkFlowBase/Delete")] public async Task Delete([FromBody]string[] pkIds) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { if (pkIds.Length == 0) { throw Oops.Oh($"服务流程主键数组不能为空", typeof(InvalidOperationException)); } var list = _serviceWorkFlowBaseRepository.AsQueryable() .Where(a => pkIds.Contains(a.PK_ID)).ToList(); if (list.Count == 0) throw Oops.Oh($"服务流程获取失败,请服务流程信息是否存在", typeof(InvalidOperationException)); if (list.Count != pkIds.Length) throw Oops.Oh($"部分服务流程获取失败,请服务流程信息是否存在", typeof(InvalidOperationException)); List rltList = new List(); list.ForEach(pr => { rltList.Add(InnerExcuteServiceWF(pr, OperateTypeEnum.Delete).GetAwaiter().GetResult()); }); result.succ = true; result.msg = rltList.FirstOrDefault().msg; result.ext = rltList; var succ = rltList.Count(x => x.succ); var fail = rltList.Count(x => !x.succ); if (succ > 0) { result.batchTotal = succ.ToString(); } else { result.batchTotal = "- "; } if (fail > 0) { result.batchTotal += "/" + fail.ToString(); } else { result.batchTotal += " -"; } } catch (Exception ex) { result.succ = false; result.msg = $"启用服务项目异常,原因:{ex.Message}"; } return result; } /// /// 复制 /// /// 服务流程主键 /// 返回回执 [HttpGet("/ServiceWorkFlowBase/Copy")] public async Task Copy([FromQuery] string pkId) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { /* 复制整票服务流程详情(服务项目和服务流程活动) */ var model = InnerGetInfo(pkId); result.succ = true; result.msg = "执行成功"; } catch (Exception ex) { result.succ = false; result.msg = $"执行启用异常,原因:{ex.Message}"; } return result; } /// /// 获取服务流程详情 /// /// 服务流程主键 /// 返回回执 [HttpGet("/ServiceWorkFlowBase/GetInfo")] public async Task GetInfo([FromQuery]string pkId) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { result.succ = true; result.ext = InnerGetShowInfo(pkId); } catch (Exception ex) { result.succ = false; result.msg = $"获取服务流程详情异常,原因:{ex.Message}"; } return result; } /// /// 检索服务流程列表 /// /// 检索值 /// 最大返回行数(默认15) /// 返回回执 [HttpGet("/ServiceWorkFlowBase/QueryList")] public async Task QueryList([FromQuery]string queryItem, [FromQuery] 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>(); } /// /// 发布服务流程 /// /// 服务流程主键数组 /// 返回回执 [HttpPost("/ServiceWorkFlowBase/PublishRelease")] public async Task PublishRelease([FromBody]string[] pkIds) { return new TaskManageOrderResultDto(); } #region 获取展示服务流程时间轴列表 /// /// 获取展示服务流程时间轴列表 /// /// 服务流程主键 /// 返回回执 [HttpGet("/ServiceWorkFlowBase/GetShowTimeLine")] public async Task GetShowTimeLine([FromQuery] string pkId) { TaskManageOrderResultDto result = new TaskManageOrderResultDto(); try { var showModel = new ServiceWorkFlowRunDto(); /* 根据已保存的服务流程生成测试数据 */ var model = InnerGetShowInfo(pkId); if(model != null) { showModel.PKId = pkId; if(model.ServiceProject != null) { showModel.ServiceProjectName = model.ServiceProject.ServiceProjectName; showModel.ServiceProjectCode = model.ServiceProject.ServiceProjectCode; } if (model.StatusSkuList != null && model.StatusSkuList.Count > 0) { int endSortNo = model.StatusSkuList.Max(a => a.SortNo); DateTime startDate = DateTime.Now.AddDays(-(endSortNo + 1)); showModel.ActivitiesList = model.StatusSkuList.Select(a => { var runModel = new ServiceWorkFlowActivitiesRunDto { PKId = Guid.NewGuid().ToString(), ActDate = startDate.AddDays(a.SortNo), ActId = a.PKId, ExecSortNo = a.SortNo, ActVal = string.Empty, IsStart = (a.SortNo == 1) ? 1 : 0, IsEnd = (a.SortNo == endSortNo) ? 1 : 0, IsYield = 1, RunId = Guid.NewGuid().ToString(), ShowName = a.ShowName, SourceType = "AUTO", StatusSKUCode = a.statusSkuBase.StatusSKUCode, StatusSKUId = a.StatusSKUId }; if(a.IsContainsSub == 1) { int endSubSortNo = a.SubList.Max(a => a.SortNo); DateTime startSubDate = DateTime.Now.AddDays(-(endSubSortNo + 1)); runModel.SubList = a.SubList.Select(b => { var subModel = new ServiceWorkFlowActivitiesRunSubDto { PKId = Guid.NewGuid().ToString(), ActDate = startSubDate.AddDays(b.SortNo), ActId = b.PKId, ExecSortNo = b.SortNo, ActVal = string.Empty, IsStart = (b.SortNo == 1) ? 1 : 0, IsEnd = (b.SortNo == endSortNo) ? 1 : 0, IsYield = 1, RunId = Guid.NewGuid().ToString(), ShowName = b.ShowName, SourceType = "AUTO", StatusSKUCode = b.statusSkuBase.StatusSKUCode, StatusSKUId = b.StatusSKUId }; return subModel; }).ToList(); } return runModel; }).ToList(); } } result.succ = true; result.ext = showModel; } catch (Exception ex) { result.succ = false; result.msg = $"检索状态列表异常,原因:{ex.Message}"; } return result; } #endregion } }