197 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			197 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using APT.BaseData.Domain.Entities;
 | 
						|
using APT.BaseData.Domain.Entities.FM;
 | 
						|
using APT.BaseData.Domain.Enums;
 | 
						|
using APT.BaseData.Domain.Enums.PF;
 | 
						|
using APT.BaseData.Domain.IServices;
 | 
						|
using APT.BaseData.Domain.IServices.FM;
 | 
						|
using APT.Infrastructure.Core;
 | 
						|
using APT.MS.Domain.Entities.DM;
 | 
						|
using APT.MS.Domain.Entities.SC.DM;
 | 
						|
using APT.MS.Domain.Enums;
 | 
						|
using APT.Utility;
 | 
						|
using Autofac.Core;
 | 
						|
using Microsoft.AspNetCore.Mvc;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
 | 
						|
namespace APT.SC.WebApi.Controllers.Api.DMController
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    ///  设备设施申领
 | 
						|
    /// </summary>
 | 
						|
    [Route("api/DM/DMDeviceApply")]
 | 
						|
    public partial class DeviceApplyController : AuthorizeApiController<T_DM_DEVICE_APPLY>
 | 
						|
    {
 | 
						|
        IPFCodeRuleService CodeRuleService { get; set; }
 | 
						|
        IFMNotificationTaskService NotificationTaskService { get; set; }
 | 
						|
        IFMFlowPermitService MFlowPermitService { get; set; }
 | 
						|
        IPFApproveCallBackService ApproveCallBackService { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// 设备设施申领
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="notificationTaskService"></param>
 | 
						|
        public DeviceApplyController(IPFCodeRuleService codeRuleService, IFMNotificationTaskService notificationTaskService, IFMFlowPermitService mFlowPermitService, IPFApproveCallBackService approveCallBackService)
 | 
						|
        {
 | 
						|
            CodeRuleService = codeRuleService;
 | 
						|
            NotificationTaskService = notificationTaskService;
 | 
						|
            MFlowPermitService = mFlowPermitService;
 | 
						|
            ApproveCallBackService = approveCallBackService;
 | 
						|
        }
 | 
						|
        /// <summary>
 | 
						|
        /// 新增/编辑
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="entity"></param>
 | 
						|
        /// <returns></returns>
 | 
						|
        [HttpPost, Route("FullUpdate")]
 | 
						|
        public JsonActionResult<bool> FullUpdate([FromBody] T_DM_DEVICE_APPLY entity)
 | 
						|
        {
 | 
						|
            return SafeExecute(() =>
 | 
						|
            {
 | 
						|
                entity.TIME = DateTime.Now;
 | 
						|
                entity.STATUS = PFStandardStatus.Draft;
 | 
						|
                var loginUserId = APT.Infrastructure.Api.AppContext.CurrentSession.UserID;
 | 
						|
                if (entity.TaskID != Guid.Empty)
 | 
						|
                {
 | 
						|
                    var currTask = GetEntity<T_FM_NOTIFICATION_TASK>(t => t.ID == entity.TaskID);
 | 
						|
                    if (currTask != null)
 | 
						|
                    {
 | 
						|
                        loginUserId = currTask.USER_ID;
 | 
						|
                    }
 | 
						|
                }
 | 
						|
                if (entity.USER_ID == null)
 | 
						|
                    entity.USER_ID = loginUserId;
 | 
						|
                if (entity.DEPARTMENT_ID == null)
 | 
						|
                    entity.DEPARTMENT_ID = this.GetEntity<T_FM_USER>(t => t.ENABLE_STATUS == 0 && t.ID == (Guid)loginUserId)?.DEPARTMENT_ID;
 | 
						|
                if (string.IsNullOrEmpty(entity.CODE))
 | 
						|
                    entity.CODE = DateTime.Now.Year.ToString().PadLeft(4, '0') + DateTime.Now.Month.ToString().PadLeft(2, '0') + DateTime.Now.Day.ToString().PadLeft(2, '0') + new Random().Next().ToString();
 | 
						|
                var details = entity.Nav_Details;
 | 
						|
                entity.Nav_Details = null;
 | 
						|
                if (details != null && details.Any())
 | 
						|
                {
 | 
						|
                    var departIds = details.Select(t => t.DEPARTMENT_ID).Distinct().ToList();
 | 
						|
                    var postIds = details.Select(t => t.USER_POST_ID).Distinct().ToList();
 | 
						|
                    var users = this.GetEntities<T_FM_USER>(t => (departIds.Contains(t.DEPARTMENT_ID) || (t.Nav_Person != null && postIds.Contains(t.Nav_Person.POST_ID))) && t.ENABLE_STATUS == 0,new BaseFilter(entity.ORG_ID), "Nav_Person");
 | 
						|
                    //var users = this.GetEntities<T_FM_USER>(t => userIds.Contains(t.ID), new BaseFilter(entity.ORG_ID), "Nav_Person");
 | 
						|
                    details.ForEach(t =>
 | 
						|
                    {
 | 
						|
                        t.ORG_ID = entity.ORG_ID; t.DEVICE_APPLY_ID = entity.ID;
 | 
						|
                        t.USER_ID = users.FirstOrDefault(m => m.DEPARTMENT_ID == t.DEPARTMENT_ID && m.Nav_Person.POST_ID == t.USER_POST_ID)?.ID;
 | 
						|
                    });
 | 
						|
                }
 | 
						|
                if (entity.PUBLISH != null && entity.PUBLISH.Equals("SaveAndNotify"))
 | 
						|
                {
 | 
						|
                    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], "DM014", "", entity.ID, "DM014_SHOWPRINT", entity.TaskID, true, () =>
 | 
						|
                    {
 | 
						|
                        if (entity != null)
 | 
						|
                            this.UpdateEntityNoCommit(entity);
 | 
						|
                        if (details != null && details.Any())
 | 
						|
                            this.BantchSaveEntityNoCommit(details);
 | 
						|
                    }, null, null, null, null, null, "DM014_SHOWPRINT", null);
 | 
						|
                    return true;
 | 
						|
                }
 | 
						|
                UnifiedCommit(() =>
 | 
						|
                {
 | 
						|
                    if (entity != null)
 | 
						|
                        this.UpdateEntityNoCommit(entity);
 | 
						|
                    if (details != null && details.Any())
 | 
						|
                        this.BantchSaveEntityNoCommit(details);
 | 
						|
                });
 | 
						|
                return true;
 | 
						|
            });
 | 
						|
        }
 | 
						|
        /// <summary>
 | 
						|
        /// 获取
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="filter"></param>
 | 
						|
        /// <returns></returns>
 | 
						|
        [HttpPost, Route("GetEdit")]
 | 
						|
        public JsonActionResult<T_DM_DEVICE_APPLY> GetEdit([FromBody] KeywordFilter filter)
 | 
						|
        {
 | 
						|
            return SafeExecute(() => {
 | 
						|
                var id = filter.FilterGroup.Rules.FirstOrDefault(t => t.Field == "ID").Value.ToString();
 | 
						|
                if (string.IsNullOrEmpty(id))
 | 
						|
                    this.ThrowError("030017");
 | 
						|
                var result = this.GetEntity<T_DM_DEVICE_APPLY>(id, new string[] { "Nav_User", "Nav_Department","Nav_Details","Nav_Details.Nav_UserPost",
 | 
						|
            "Nav_Details.Nav_User","Nav_Details.Nav_Department","Nav_Details.Nav_DeviceBase"
 | 
						|
                });
 | 
						|
                if (result != null && result.Nav_Details.Any())
 | 
						|
                {
 | 
						|
                    if (result.STATUS == PFStandardStatus.Rejected)
 | 
						|
                    {
 | 
						|
                        result.CONTEXT = ApproveCallBackService.RejectContent(result.ID);
 | 
						|
                    }
 | 
						|
                }
 | 
						|
                return result;
 | 
						|
            });
 | 
						|
        }
 | 
						|
        /// <summary>
 | 
						|
        /// 回调函数
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="id"></param>
 | 
						|
        /// <returns></returns>
 | 
						|
        [HttpGet, Route("BackUpdate")]
 | 
						|
        public JsonActionResult<bool> BackUpdate(string id)
 | 
						|
        {
 | 
						|
            return SafeExecute(() =>
 | 
						|
            {
 | 
						|
                return ApproveCallBackService.CallBack("DM/DMDeviceApply/BackUpdate", id);
 | 
						|
            });
 | 
						|
        }
 | 
						|
 | 
						|
        /// <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_DM_DEVICE_APPLY>(model.DATA_ID, new string[] { "Nav_User" });
 | 
						|
                entity.STATUS = PFStandardStatus.Rejected;
 | 
						|
                T_FM_NOTIFICATION_TASK notice = new T_FM_NOTIFICATION_TASK();
 | 
						|
                //驳回发消息
 | 
						|
                notice = NotificationTaskService.InsertUserNoticeTaskModel("设备设施申领表已被驳回", entity.ID, entity.ORG_ID, (Guid)entity.USER_ID, entity.Nav_User.NAME, DateTime.Now,
 | 
						|
           DateTime.Now.AddHours(24), (int)FMNoticeTypeEnum.消息, "DM014");
 | 
						|
 | 
						|
                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);
 | 
						|
            });
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |