Compare commits

...

2 Commits

Author SHA1 Message Date
he 8ce1bdf21c Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2025-02-17 10:06:06 +08:00
he 679cc26225 状态修改 2025-02-17 10:06:04 +08:00
2 changed files with 6 additions and 1 deletions

View File

@ -1495,6 +1495,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class GetRelatedVisitTaskOutDto public class GetRelatedVisitTaskOutDto
{ {
/// <summary>
/// 是否存在未处理的反馈
/// </summary>
public bool IsExistUnprocessedFeedback { get; set; }
public Guid VisitTaskId { get; set; } public Guid VisitTaskId { get; set; }
public string TaskName { get; set; } public string TaskName { get; set; }

View File

@ -643,7 +643,7 @@ namespace IRaCIS.Core.Application.Service
IsCurrentTask = x.Id == inDto.VisitTaskId, IsCurrentTask = x.Id == inDto.VisitTaskId,
IsConvertedTask = x.IsConvertedTask, IsConvertedTask = x.IsConvertedTask,
IsFirstChangeTask = x.BeforeConvertedTaskId != null, IsFirstChangeTask = x.BeforeConvertedTaskId != null,
IsExistUnprocessedFeedback=x.UserFeedBackList.Any(y => y.State == 0),
}).ToListAsync(); }).ToListAsync();