338 lines
20 KiB
C#
338 lines
20 KiB
C#
using APT.BaseData.Domain.Entities.FM;
|
|
using APT.BaseData.Domain.Entities;
|
|
using APT.BaseData.Domain.Enums.PF;
|
|
using APT.BaseData.Domain.Enums;
|
|
using APT.BaseData.Domain.IServices.FM;
|
|
using APT.BaseData.Domain.IServices;
|
|
using APT.Infrastructure.Core;
|
|
using APT.MS.Domain.Entities.SK;
|
|
using APT.MS.Domain.Enums;
|
|
using APT.Utility;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using MySqlX.XDevAPI.Common;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using System;
|
|
using APT.MS.Domain.Enums.SK;
|
|
|
|
namespace APT.SK.WebApi.Controllers.Api
|
|
{
|
|
/// <summary>
|
|
/// 安全风险评估表
|
|
/// </summary>
|
|
[Route("api/SK/SKRiskEvaluation")]
|
|
public partial class RiskEvaluationController : AuthorizeApiController<T_SK_RISK_EVALUATION>
|
|
{
|
|
IPFApproveCallBackService ApproveCallBackService { get; set; }
|
|
IFMNotificationTaskService NotificationTaskService { get; set; }
|
|
IPFCodeRuleService CodeRuleService { get; set; }
|
|
IFMFlowPermitService MFlowPermitService { get; set; }
|
|
public RiskEvaluationController(IFMNotificationTaskService notificationTaskService, IFMFlowPermitService mFlowPermitService, IPFCodeRuleService codeRuleService, IPFApproveCallBackService approveCallBackService)
|
|
{
|
|
NotificationTaskService = notificationTaskService;
|
|
MFlowPermitService = mFlowPermitService;
|
|
CodeRuleService = codeRuleService;
|
|
ApproveCallBackService = approveCallBackService;
|
|
}
|
|
[HttpPost, Route("FullUpdate")]
|
|
public JsonActionResult<bool> FullUpdate([FromBody] T_SK_RISK_EVALUATION entity)
|
|
{
|
|
return SafeExecute<bool>(() =>
|
|
{
|
|
var userId = APT.Infrastructure.Api.AppContext.CurrentSession.UserID;
|
|
var departId = APT.Infrastructure.Api.AppContext.CurrentSession.DepartmentID;
|
|
if (entity.APPLY_USER_ID == null)
|
|
entity.APPLY_USER_ID = userId;
|
|
if (entity.APPLY_DEPARTMENT_ID == null)
|
|
entity.APPLY_DEPARTMENT_ID = departId;
|
|
if (entity.IDENTIFY_EVALUATION_PLAN_ID == null)
|
|
entity.APPLY_DEPARTMENT_ID = this.GetEntity<T_SK_IDENTIFY_EVALUATION_PLAN>(t => t.START_DATE.Value.Date == entity.START_DATE.Value.Date && t.STATUS == PFStandardStatus.Archived && t.ISSEND == true)?.ID;
|
|
var details = entity.Nav_Details;
|
|
entity.Nav_Details = null;
|
|
var files = entity.Nav_Files;
|
|
entity.Nav_Files = null;
|
|
entity.ApplyDepartmentName = this.GetEntity<T_FM_DEPARTMENT>(t => t.ID == departId).NAME;
|
|
entity.ApplyPostName = this.GetEntity<T_FM_USER>(t => t.ID == userId, "Nav_Person.Nav_Post")?.Nav_Person?.Nav_Post?.NAME;
|
|
List<Guid> deleteMeasureIds = new List<Guid>();
|
|
List<Guid> deleteDepartIds = new List<Guid>();
|
|
List<Guid> deletePostIds = new List<Guid>();
|
|
List<Guid> deleteDetailIds = new List<Guid>();
|
|
List<T_SK_RISK_EVALUATION_DETAIL_MEASURE> measureList = new List<T_SK_RISK_EVALUATION_DETAIL_MEASURE>();
|
|
List<T_SK_RISK_EVALUATION_DETAIL_DEPART> departList = new List<T_SK_RISK_EVALUATION_DETAIL_DEPART>();
|
|
List<T_SK_RISK_EVALUATION_DETAIL_POST> postList = new List<T_SK_RISK_EVALUATION_DETAIL_POST>();
|
|
//更新标识字段
|
|
var record = this.GetEntity<T_SK_RISK_EVALUATION>(t => t.ID == entity.ID, "Nav_Details");
|
|
if (record != null && record.Nav_Details != null && record.Nav_Details.Any() && details != null && details.Any())
|
|
{
|
|
deleteDetailIds = record.Nav_Details.Select(t => t.ID).ToList();
|
|
deleteMeasureIds = this.GetEntities<T_SK_RISK_EVALUATION_DETAIL_MEASURE>(t => deleteDetailIds.Contains(t.RISK_EVALUATION_DETAIL_ID), new BaseFilter(entity.ORG_ID)).Select(t => t.ID).ToList();
|
|
deleteDepartIds = this.GetEntities<T_SK_RISK_EVALUATION_DETAIL_DEPART>(t => deleteDetailIds.Contains(t.RISK_EVALUATION_DETAIL_ID), new BaseFilter(entity.ORG_ID)).Select(t => t.ID).ToList();
|
|
deletePostIds = this.GetEntities<T_SK_RISK_EVALUATION_DETAIL_POST>(t => deleteDetailIds.Contains(t.RISK_EVALUATION_DETAIL_ID), new BaseFilter(entity.ORG_ID)).Select(t => t.ID).ToList();
|
|
//record.Nav_Details.ForEach(t =>
|
|
//{
|
|
// if (t.Nav_DetailMeasures != null && t.Nav_DetailMeasures.Any())
|
|
// {
|
|
// var tempIds = t.Nav_DetailMeasures.Select(m => m.ID).ToList();
|
|
// deleteMeasureIds.AddRange(tempIds);
|
|
// }
|
|
// if (t.Nav_DetailDeparts != null && t.Nav_DetailDeparts.Any())
|
|
// {
|
|
// var tempIds = t.Nav_DetailDeparts.Select(m => m.ID).ToList();
|
|
// deleteDepartIds.AddRange(tempIds);
|
|
// }
|
|
// if (t.Nav_DetailPosts != null && t.Nav_DetailPosts.Any())
|
|
// {
|
|
// var tempIds = t.Nav_DetailPosts.Select(m => m.ID).ToList();
|
|
// deletePostIds.AddRange(tempIds);
|
|
// }
|
|
// deleteDetailIds.Add(t.ID);
|
|
//});
|
|
}
|
|
if (details != null && details.Any())
|
|
{
|
|
foreach (var item in details)
|
|
{
|
|
item.ORG_ID = entity.ORG_ID;
|
|
item.RISK_EVALUATION_ID = entity.ID;
|
|
if (item.Nav_DetailMeasures != null && item.Nav_DetailMeasures.Any())
|
|
{
|
|
foreach (var item2 in item.Nav_DetailMeasures)
|
|
{
|
|
item2.ORG_ID = entity.ORG_ID;
|
|
item2.RISK_EVALUATION_DETAIL_ID = item.ID;
|
|
measureList.Add(item2);
|
|
}
|
|
}
|
|
item.Nav_DetailMeasures = null;
|
|
if (item.Nav_DetailDeparts != null && item.Nav_DetailDeparts.Any())
|
|
{
|
|
foreach (var item2 in item.Nav_DetailDeparts)
|
|
{
|
|
item2.ORG_ID = entity.ORG_ID;
|
|
item2.RISK_EVALUATION_DETAIL_ID = item.ID;
|
|
departList.Add(item2);
|
|
}
|
|
}
|
|
item.Nav_DetailDeparts = null;
|
|
if (item.Nav_DetailPosts != null && item.Nav_DetailPosts.Any())
|
|
{
|
|
foreach (var item2 in item.Nav_DetailPosts)
|
|
{
|
|
item2.ORG_ID = entity.ORG_ID;
|
|
item2.RISK_EVALUATION_DETAIL_ID = item.ID;
|
|
postList.Add(item2);
|
|
}
|
|
}
|
|
item.Nav_DetailPosts = null;
|
|
if (item.EVALUATE_LEVEL == SKEvaluateLevelEnum.重大风险)
|
|
{
|
|
if (!string.IsNullOrEmpty(item.DEPARTMENT_TYPE) && !item.DEPARTMENT_TYPE.Contains("公司级"))
|
|
{
|
|
throw new Exception("第" + item.NUM + "行,重大风险管控层级必须包含公司级");
|
|
}
|
|
}
|
|
if (item.EVALUATE_LEVEL == SKEvaluateLevelEnum.较大风险)
|
|
{
|
|
if (!string.IsNullOrEmpty(item.DEPARTMENT_TYPE) && !item.DEPARTMENT_TYPE.Contains("部门级") && !item.DEPARTMENT_TYPE.Contains("公司级"))
|
|
{
|
|
throw new Exception("第" + item.NUM + "行,较大风险管控层级必须大于部门级");
|
|
}
|
|
}
|
|
if (item.EVALUATE_LEVEL == SKEvaluateLevelEnum.一般风险)
|
|
{
|
|
if (!string.IsNullOrEmpty(item.DEPARTMENT_TYPE) && !item.DEPARTMENT_TYPE.Contains("部门级") && !item.DEPARTMENT_TYPE.Contains("公司级") && !item.DEPARTMENT_TYPE.Contains("车间级"))
|
|
{
|
|
throw new Exception("第" + item.NUM + "行,一般风险管控层级必须大于车间级");
|
|
}
|
|
}
|
|
if (item.EVALUATE_LEVEL == SKEvaluateLevelEnum.低风险)
|
|
{
|
|
if (!string.IsNullOrEmpty(item.DEPARTMENT_TYPE) && !item.DEPARTMENT_TYPE.Contains("部门级") && !item.DEPARTMENT_TYPE.Contains("公司级") && !item.DEPARTMENT_TYPE.Contains("车间级") && !item.DEPARTMENT_TYPE.Contains("班组级"))
|
|
{
|
|
throw new Exception("第" + item.NUM + "行,低风险管控层级必须大于班组级");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (files != null && files.Any())
|
|
{
|
|
foreach (var item in files)
|
|
{
|
|
item.ORG_ID = entity.ORG_ID;
|
|
item.RISK_EVALUATION_ID = entity.ID;
|
|
item.Nav_ImgFile = null;
|
|
}
|
|
}
|
|
List<T_FM_NOTIFICATION_TASK> notices = new List<T_FM_NOTIFICATION_TASK>();
|
|
if (entity.PUBLISH != null && entity.PUBLISH.Equals("SaveAndNotify"))
|
|
{
|
|
var departmentType = this.GetEntity<T_FM_DEPARTMENT>(t => t.ID == entity.APPLY_DEPARTMENT_ID && t.ENABLE_STATUS == 0)?.DEPARTMENT_TYPE;
|
|
var param = Enum.GetName(typeof(FMDepartmentType), departmentType);
|
|
entity.STATUS = PFStandardStatus.Approving;
|
|
//取审批流水码
|
|
var sysFilter = new SystemCodeFilter();
|
|
sysFilter.CodeType = (int)PFCodeRuleType.审批流编码;
|
|
sysFilter.Count = 1;
|
|
sysFilter.OrgId = entity.ORG_ID;
|
|
var codes = CodeRuleService.NewGenSerial(sysFilter);
|
|
var serialCode = codes.Split(new char[] { ',' });
|
|
MFlowPermitService.InsertApprove(serialCode[0], "SK039", param, entity.ID, "SK039_SHOWPRINT", entity.TaskID, true, () =>
|
|
{
|
|
if (deleteMeasureIds != null && deleteMeasureIds.Any())
|
|
this.BantchDeleteEntityNoCommit<T_SK_RISK_EVALUATION_DETAIL_MEASURE>(deleteMeasureIds);
|
|
if (deleteDepartIds != null && deleteDepartIds.Any())
|
|
this.BantchDeleteEntityNoCommit<T_SK_RISK_EVALUATION_DETAIL_DEPART>(deleteDepartIds);
|
|
if (deletePostIds != null && deletePostIds.Any())
|
|
this.BantchDeleteEntityNoCommit<T_SK_RISK_EVALUATION_DETAIL_POST>(deletePostIds);
|
|
if (deleteDetailIds != null && deleteDetailIds.Any())
|
|
this.BantchDeleteEntityNoCommit<T_SK_RISK_EVALUATION_DETAIL>(deleteDetailIds);
|
|
if (entity != null)
|
|
UpdateEntityNoCommit(entity);
|
|
if (details != null && details.Any())
|
|
BantchSaveEntityNoCommit(details);
|
|
if (files != null && files.Any())
|
|
BantchSaveEntityNoCommit(files);
|
|
if (measureList != null && measureList.Any())
|
|
BantchSaveEntityNoCommit(measureList);
|
|
if (departList != null && departList.Any())
|
|
BantchSaveEntityNoCommit(departList);
|
|
}, null, null, null, null, null, "SK039_SHOWPRINT", null, "安全风险评估表审批");
|
|
return true;
|
|
}
|
|
this.UnifiedCommit(() =>
|
|
{
|
|
if (deleteMeasureIds != null && deleteMeasureIds.Any())
|
|
this.BantchDeleteEntityNoCommit<T_SK_RISK_EVALUATION_DETAIL_MEASURE>(deleteMeasureIds);
|
|
if (deleteDepartIds != null && deleteDepartIds.Any())
|
|
this.BantchDeleteEntityNoCommit<T_SK_RISK_EVALUATION_DETAIL_DEPART>(deleteDepartIds);
|
|
if (deletePostIds != null && deletePostIds.Any())
|
|
this.BantchDeleteEntityNoCommit<T_SK_RISK_EVALUATION_DETAIL_POST>(deletePostIds);
|
|
if (deleteDetailIds != null && deleteDetailIds.Any())
|
|
this.BantchDeleteEntityNoCommit<T_SK_RISK_EVALUATION_DETAIL>(deleteDetailIds);
|
|
if (entity != null)
|
|
UpdateEntityNoCommit(entity);
|
|
if (details != null && details.Any())
|
|
BantchSaveEntityNoCommit(details);
|
|
if (files != null && files.Any())
|
|
BantchSaveEntityNoCommit(files);
|
|
if (measureList != null && measureList.Any())
|
|
BantchSaveEntityNoCommit(measureList);
|
|
if (departList != null && departList.Any())
|
|
BantchSaveEntityNoCommit(departList);
|
|
});
|
|
return true;
|
|
});
|
|
}
|
|
/// <summary>
|
|
/// 获得单条实体数据
|
|
/// </summary>
|
|
/// <param name="filter">过滤实体</param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("SKGet")]
|
|
public JsonActionResult<T_SK_RISK_EVALUATION> SKGet([FromBody] KeywordFilter filter)
|
|
{
|
|
return SafeExecute(() =>
|
|
{
|
|
var id = filter.FilterGroup.Rules.FirstOrDefault(t => t.Field == "ID").Value.ToString();
|
|
if (string.IsNullOrEmpty(id))
|
|
this.ThrowError("060010");
|
|
filter.IgnoreDataRule = true;
|
|
var result = this.GetEntity<T_SK_RISK_EVALUATION>(id, new string[] { "Nav_ApplyUser", "Nav_ApplyDepartment","Nav_Require",
|
|
"Nav_Files.Nav_ImgFile"});
|
|
if (result != null)
|
|
{
|
|
var details = this.GetEntities<T_SK_RISK_EVALUATION_DETAIL>(t => t.RISK_EVALUATION_ID == result.ID, new BaseFilter(filter.OrgId), "Nav_Area", "Nav_Type", "Nav_RiskName", "Nav_SCOREL", "Nav_SCOREE", "Nav_SCOREC");
|
|
if (details.Any())
|
|
{
|
|
var detailIds = details.Select(t => t.ID).ToList();
|
|
var measures = this.GetEntities<T_SK_RISK_EVALUATION_DETAIL_MEASURE>(t => detailIds.Contains(t.RISK_EVALUATION_DETAIL_ID), new BaseFilter(filter.OrgId));
|
|
var departs = this.GetEntities<T_SK_RISK_EVALUATION_DETAIL_DEPART>(t => detailIds.Contains(t.RISK_EVALUATION_DETAIL_ID), new BaseFilter(filter.OrgId), "Nav_Department", "Nav_User");
|
|
var posts = this.GetEntities<T_SK_RISK_EVALUATION_DETAIL_POST>(t => detailIds.Contains(t.RISK_EVALUATION_DETAIL_ID), new BaseFilter(filter.OrgId), "Nav_Post");
|
|
foreach (var detail in details)
|
|
{
|
|
var measureTemps = measures.Where(t => t.RISK_EVALUATION_DETAIL_ID == detail.ID).ToList();
|
|
detail.Nav_DetailMeasures = measureTemps.OrderBy(t => t.NUM).ToList();
|
|
var departTemps = departs.Where(t => t.RISK_EVALUATION_DETAIL_ID == detail.ID).ToList();
|
|
detail.Nav_DetailDeparts = departTemps.OrderBy(t => t.DEPARTMENT_TYPE).ThenBy(m => m.Nav_Department.NUM).ToList();
|
|
var postTemps = posts.Where(t => t.RISK_EVALUATION_DETAIL_ID == detail.ID).ToList();
|
|
detail.Nav_DetailPosts = postTemps.OrderBy(t => t.POST_ID).ToList();
|
|
}
|
|
}
|
|
result.Nav_Details = details.OrderBy(m => m.MineType).ThenBy(m => m.AREA_ID).ThenBy(n => n.TYPE_ID).ToList();
|
|
if (result.STATUS == PFStandardStatus.Rejected)
|
|
{
|
|
result.CONTEXT = ApproveCallBackService.RejectContent(result.ID);
|
|
}
|
|
}
|
|
return result;
|
|
});
|
|
//var result = WitEntity(null, filter);
|
|
//if (result != null && result.Data != null && result.Data.STATUS == PFStandardStatus.Rejected)
|
|
//{
|
|
// result.Data.CONTEXT = ApproveCallBackService.RejectContent(result.Data.ID);
|
|
//}
|
|
//return result;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 回调函数
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("BackUpdateNew")]
|
|
public JsonActionResult<bool> BackUpdateNew([FromBody] T_PF_APPROVE entity)
|
|
{
|
|
return SafeExecute(() =>
|
|
{
|
|
return ApproveCallBackService.CallBackNew("SK/SKRiskEvaluation/BackUpdateNew", entity);
|
|
});
|
|
}
|
|
/// <summary>
|
|
/// 驳回
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("RejectUpdate")]
|
|
public JsonActionResult<bool> RejectUpdate([FromBody] T_PF_APPROVE model)
|
|
{
|
|
return SafeExecute(() =>
|
|
{
|
|
//公共 获取审批流信息
|
|
T_PF_APPROVE modelApp = null;
|
|
List<T_PF_APPROVE_DETAIL> listAppDetail = null;
|
|
T_FM_NOTIFICATION_TASK taskFinish = null;
|
|
string Msg = string.Empty;
|
|
bool ResultGetInfo = ApproveCallBackService.GetApproject(model, ref modelApp, ref listAppDetail, ref taskFinish, ref Msg);
|
|
if (!ResultGetInfo)
|
|
throw new Exception("驳回失败!");
|
|
if (modelApp == null || listAppDetail == null)
|
|
throw new Exception("获取驳回信息失败!");
|
|
var entity = this.GetEntity<T_SK_RISK_EVALUATION>(model.DATA_ID, new string[] { "Nav_ApplyUser" });
|
|
entity.STATUS = PFStandardStatus.Rejected;
|
|
T_FM_NOTIFICATION_TASK notice = new T_FM_NOTIFICATION_TASK();
|
|
if (entity.APPLY_USER_ID != null)
|
|
{
|
|
//发消息
|
|
notice = NotificationTaskService.InsertUserNoticeTaskModel("安全风险评估表被驳回", entity.ID, entity.ORG_ID, (Guid)entity.APPLY_USER_ID, entity.Nav_ApplyUser?.NAME, DateTime.Now,
|
|
DateTime.Now.AddHours(24), (int)FMNoticeTypeEnum.消息, "SK039");
|
|
}
|
|
UnifiedCommit(() =>
|
|
{
|
|
if (entity != null)
|
|
this.UpdateEntityNoCommit(entity);
|
|
if (notice != null)
|
|
this.UpdateEntityNoCommit(notice);
|
|
if (modelApp != null)
|
|
UpdateEntityNoCommit(modelApp);
|
|
if (listAppDetail != null && listAppDetail.Count > 0)
|
|
BantchUpdateEntityNoCommit(listAppDetail);
|
|
if (taskFinish != null)
|
|
UpdateEntityNoCommit(taskFinish);
|
|
});
|
|
return true;
|
|
//return ApproveCallBackService.CallReject("HM/HMLicenseAnalysis/RejectUpdate", id);
|
|
});
|
|
}
|
|
}
|
|
}
|