修改一版

Uat_Study
he 2022-07-04 14:55:37 +08:00
parent e60ccc0083
commit 47d63c39da
2 changed files with 4 additions and 1 deletions

View File

@ -198,7 +198,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class TaskInfo public class TaskInfo
{ {
public Guid TaskId { get; set; } public Guid? TaskId { get; set; }
/// <summary> /// <summary>
/// 是否是当前任务 /// 是否是当前任务

View File

@ -138,6 +138,7 @@ namespace IRaCIS.Core.Application.Service
medicalReviewInfo.TaskList.ForEach(x => medicalReviewInfo.TaskList.ForEach(x =>
{ {
x.OtherTaskId = otherTask.Where(y => y.SouceReadModuleId == x.SouceReadModuleId && y.SourceSubjectVisitId == x.SourceSubjectVisitId).Select(y => y.TaskId).FirstOrDefault(); x.OtherTaskId = otherTask.Where(y => y.SouceReadModuleId == x.SouceReadModuleId && y.SourceSubjectVisitId == x.SourceSubjectVisitId).Select(y => y.TaskId).FirstOrDefault();
}); });
} }
@ -266,5 +267,7 @@ namespace IRaCIS.Core.Application.Service
return ResponseOutput.Result(result); return ResponseOutput.Result(result);
} }
} }
} }