175 lines
7.8 KiB
C#
175 lines
7.8 KiB
C#
using APT.BaseData.Domain.Entities;
|
|
using APT.BaseData.Domain.Entities.FM;
|
|
using APT.BaseData.Domain.Enums.PF;
|
|
using APT.BaseData.Domain.IServices;
|
|
using APT.BaseData.Domain.IServices.FM;
|
|
using APT.BaseData.Services.Services.FM;
|
|
using APT.Infrastructure.Core;
|
|
using APT.MS.Domain.Entities.SC.DM;
|
|
using APT.MS.Domain.Enums;
|
|
using APT.Utility;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace APT.SC.WebApi.Controllers.Api.DMController
|
|
{
|
|
/// <summary>
|
|
/// 设备设施发放表
|
|
/// </summary>
|
|
[Route("api/DM/DMDeviceIssue")]
|
|
public partial class DeviceIssueController : AuthorizeApiController<T_DM_DEVICE_ISSUE>
|
|
{
|
|
IPFCodeRuleService CodeRuleService { get; set; }
|
|
IFMNotificationTaskService NotificationTaskService { get; set; }
|
|
IFMFlowPermitService MFlowPermitService { get; set; }
|
|
IPFApproveCallBackService ApproveCallBackService { get; set; }
|
|
/// <summary>
|
|
/// 设备设施发放表
|
|
/// </summary>
|
|
/// <param name="notificationTaskService"></param>
|
|
public DeviceIssueController(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_ISSUE entity)
|
|
{
|
|
return SafeExecute(() =>
|
|
{
|
|
entity.TIME = DateTime.Now;
|
|
entity.STATUS = PFStandardStatus.Draft;
|
|
var loginUserId = APT.Infrastructure.Api.AppContext.CurrentSession.UserID;
|
|
entity.USER_ID = loginUserId;
|
|
var user = this.GetEntity<T_FM_USER>(t => t.ID == loginUserId.Value && t.ENABLE_STATUS == 0);
|
|
entity.DEPARTMENT_ID = user?.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())
|
|
{
|
|
details.ForEach(t =>
|
|
{
|
|
t.ORG_ID = entity.ORG_ID; t.DEVICE_ISSUE_ID = entity.ID;
|
|
});
|
|
}
|
|
List<T_FM_NOTIFICATION_TASK> notices = new List<T_FM_NOTIFICATION_TASK>();
|
|
T_FM_NOTIFICATION_TASK task = null;
|
|
if (entity.PUBLISH != null && entity.PUBLISH.Equals("SaveAndNotify"))
|
|
{
|
|
entity.STATUS = PFStandardStatus.Sign;
|
|
details.ForEach(t =>
|
|
{
|
|
if (t.USER_ID == loginUserId)
|
|
t.DEAL_STATUS = MS.Domain.Enums.FOUserShiftStatusEnum.已处理;
|
|
});
|
|
var userIds = details.Where(m=> m.USER_ID!= loginUserId).Select(t => t.USER_ID).Distinct().ToList();
|
|
if (userIds != null && userIds.Any())
|
|
{
|
|
var users = this.GetEntities<T_FM_USER>(t => userIds.Contains(t.ID) && t.ENABLE_STATUS == 0, new BaseFilter(entity.ORG_ID));
|
|
foreach (var item in userIds)
|
|
{
|
|
var userInfo = users.FirstOrDefault(t => t.ID == item.Value);
|
|
if (userInfo != null)
|
|
{
|
|
notices.Add(NotificationTaskService.InsertUserNoticeTaskModel("设备设施领用发放确认", entity.ID, entity.ORG_ID, userInfo.ID, userInfo.NAME, DateTime.Now, DateTime.Now.AddDays(30), (int)FMNoticeTypeEnum.消息, "DM016_SHOWPRINT"));
|
|
}
|
|
}
|
|
}
|
|
if (entity.TaskID != Guid.Empty)
|
|
{
|
|
task = NotificationTaskService.GetTaskFinishModel(entity.TaskID);
|
|
task.SOURCE_FORMCODE = "DM016_SHOWPRINT";
|
|
}
|
|
}
|
|
UnifiedCommit(() =>
|
|
{
|
|
if (entity != null)
|
|
this.UpdateEntityNoCommit(entity);
|
|
if (details != null && details.Any())
|
|
this.BantchSaveEntityNoCommit(details);
|
|
if (notices != null && notices.Any())
|
|
this.BantchSaveEntityNoCommit(notices);
|
|
if (task != null)
|
|
this.UpdateEntityNoCommit(task);
|
|
});
|
|
return true;
|
|
});
|
|
}
|
|
/// <summary>
|
|
/// 识别人确认
|
|
/// </summary>
|
|
/// <param name="entity"></param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("IdentityUpdate")]
|
|
public JsonActionResult<bool> IdentityUpdate([FromBody] T_DM_DEVICE_ISSUE entity)
|
|
{
|
|
return SafeExecute(() =>
|
|
{
|
|
var issue = this.GetEntity<T_DM_DEVICE_ISSUE>(entity.ID, "Nav_Details");
|
|
var userId = APT.Infrastructure.Api.AppContext.CurrentSession.UserID;
|
|
var user = this.GetEntity<T_DM_DEVICE_ISSUE_DETAIL>(t => t.DEVICE_ISSUE_ID == issue.ID && t.USER_ID == userId, new BaseFilter(issue.ORG_ID));
|
|
user.DEAL_STATUS = FOUserShiftStatusEnum.已处理;
|
|
T_FM_NOTIFICATION_TASK task = null;
|
|
var todoCount = this.GetCount<T_DM_DEVICE_ISSUE_DETAIL>(t => t.DEVICE_ISSUE_ID == issue.ID && t.DEAL_STATUS == 0, new BaseFilter(issue.ORG_ID));
|
|
if (todoCount == 0 || todoCount == 1)
|
|
{
|
|
issue.STATUS = PFStandardStatus.Archived;
|
|
}
|
|
if (entity.TaskID != Guid.Empty)
|
|
{
|
|
task = NotificationTaskService.GetTaskFinishModel(entity.TaskID);
|
|
task.SOURCE_FORMCODE = "DM016_SHOWPRINT";
|
|
}
|
|
UnifiedCommit(() =>
|
|
{
|
|
if (issue != null)
|
|
this.UpdateEntityNoCommit(issue);
|
|
if (user != null)
|
|
this.UpdateEntityNoCommit(user);
|
|
if (task != null)
|
|
this.UpdateEntityNoCommit(task);
|
|
});
|
|
return true;
|
|
});
|
|
}
|
|
/// <summary>
|
|
/// 归还
|
|
/// </summary>
|
|
/// <param name="entity"></param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("DetailUpdate")]
|
|
public JsonActionResult<bool> DetailUpdate([FromBody] T_DM_DEVICE_ISSUE_DETAIL entity)
|
|
{
|
|
return SafeExecute(() =>
|
|
{
|
|
T_FM_NOTIFICATION_TASK task = null;
|
|
if (entity.TaskID != Guid.Empty)
|
|
{
|
|
task = NotificationTaskService.GetTaskFinishModel(entity.TaskID);
|
|
task.SOURCE_FORMCODE = "DM026_SHOWPRINT";
|
|
}
|
|
UnifiedCommit(() =>
|
|
{
|
|
if (entity != null)
|
|
this.UpdateEntityNoCommit(entity);
|
|
if (task != null)
|
|
this.UpdateEntityNoCommit(task);
|
|
});
|
|
return true;
|
|
});
|
|
}
|
|
}
|
|
}
|