|
@@ -5,6 +5,7 @@ using GxPress.Common.Tools;
|
|
|
using GxPress.Entity.WorkFlow;
|
|
|
using GxPress.Entity.WorkFlowDto;
|
|
|
using GxPress.EnumConst;
|
|
|
+using GxPress.Request.Notice;
|
|
|
|
|
|
namespace GxPress.Service.Implement
|
|
|
{
|
|
@@ -17,6 +18,10 @@ namespace GxPress.Service.Implement
|
|
|
/// <returns></returns>
|
|
|
public async Task<int> AddAsync(FlowDto flow)
|
|
|
{
|
|
|
+ //获取用户
|
|
|
+ var user = await _userRepository.GetAsync(flow.UserId);
|
|
|
+ //获取
|
|
|
+ var process = await _processRepository.GetAsync(flow.ProcessId);
|
|
|
flow.Id = await _flowRepository.InsertAsync(new Entity.WorkFlow.Flow
|
|
|
{
|
|
|
State = FlowState.Checking,
|
|
@@ -24,7 +29,14 @@ namespace GxPress.Service.Implement
|
|
|
UserId = flow.UserId,
|
|
|
IsRead = false
|
|
|
});
|
|
|
-
|
|
|
+ await _noticeService.AddNoticeFlowAsync(new NoticeInRequest
|
|
|
+ {
|
|
|
+ NoticeType = NoticeTypeConst.Send,
|
|
|
+ Title = $"{user.Name}的{process.Name}",
|
|
|
+ UserId = flow.UserId,
|
|
|
+ SoureId = flow.Id,
|
|
|
+ TypeValue = AllTypeConst.MySubmitted.GetHashCode()
|
|
|
+ });
|
|
|
foreach (var flowField in flow.Fields)
|
|
|
{
|
|
|
await _flowFieldValueRepository.InsertAsync(new FlowFieldValue
|
|
@@ -53,7 +65,18 @@ namespace GxPress.Service.Implement
|
|
|
IsDone = false,
|
|
|
IsOperate = i == 0,
|
|
|
};
|
|
|
- await _flowTodoRepository.InsertAsync(todo);
|
|
|
+ var flowTodoId = await _flowTodoRepository.InsertAsync(todo);
|
|
|
+ //添加工作收件箱
|
|
|
+ if (todo.IsOperate)
|
|
|
+ await _noticeService.AddNoticeFlowAsync(new NoticeInRequest
|
|
|
+ {
|
|
|
+ NoticeType = NoticeTypeConst.Send,
|
|
|
+ Title = $"{user.Name}的{process.Name}",
|
|
|
+ UserId = todo.UserId,
|
|
|
+ SoureId = flow.Id,
|
|
|
+ SonId = flowTodoId,
|
|
|
+ TypeValue = AllTypeConst.MyChecked.GetHashCode()
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
if (flow.CarbonCopyUserIds != null)
|
|
@@ -69,10 +92,18 @@ namespace GxPress.Service.Implement
|
|
|
IsDone = false,
|
|
|
IsOperate = false
|
|
|
};
|
|
|
- await _flowTodoRepository.InsertAsync(todo);
|
|
|
+ var flowTodoId = await _flowTodoRepository.InsertAsync(todo);
|
|
|
+ await _noticeService.AddNoticeFlowAsync(new NoticeInRequest
|
|
|
+ {
|
|
|
+ NoticeType = NoticeTypeConst.Send,
|
|
|
+ Title = $"{user.Name}的{process.Name}",
|
|
|
+ UserId = todo.UserId,
|
|
|
+ SoureId = flow.Id,
|
|
|
+ SonId = flowTodoId,
|
|
|
+ TypeValue = AllTypeConst.MyCc.GetHashCode()
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
var nodes = await _processService.GetAllAsync(flow.ProcessId);
|
|
|
|
|
|
foreach (var processNodeDto in nodes.Where(n => n.ParentId == 0))
|
|
@@ -90,7 +121,7 @@ namespace GxPress.Service.Implement
|
|
|
if (processNodeDto.Type == nameof(ProcessNodeTypeConst.Switch))
|
|
|
{
|
|
|
//工作流条件
|
|
|
- await NodeExecuteSwitchAsync(flow,processNodeDto);
|
|
|
+ await NodeExecuteSwitchAsync(flow, processNodeDto);
|
|
|
}
|
|
|
if (processNodeDto.Type == nameof(ProcessNodeTypeConst.End))
|
|
|
{
|
|
@@ -114,7 +145,7 @@ namespace GxPress.Service.Implement
|
|
|
var flow = await GetAsync(flowId);
|
|
|
if (flow == null) return 0;
|
|
|
|
|
|
- flow.Id = await _flowRepository.InsertAsync(new Entity.WorkFlow.Flow
|
|
|
+ flow.Id = await _flowRepository.InsertAsync(new Entity.WorkFlow.Flow
|
|
|
{
|
|
|
ProcessId = flow.ProcessId,
|
|
|
State = FlowState.Checking,
|