Uat_Study
parent
8a2833bbda
commit
3193733fbf
|
@ -227,7 +227,14 @@ namespace IRaCIS.Core.Application.Service
|
|||
|
||||
medicalReviewInfo.TaskList.ForEach(x =>
|
||||
{
|
||||
x.OtherTaskId = otherTask.Where(y => y.SouceReadModuleId == x.SouceReadModuleId && y.SourceSubjectVisitId == x.SourceSubjectVisitId).Select(y => y.TaskId).FirstOrDefault();
|
||||
|
||||
var otherTaskInfo = otherTask.Where(y => y.SouceReadModuleId == x.SouceReadModuleId && y.SourceSubjectVisitId == x.SourceSubjectVisitId).FirstOrDefault();
|
||||
if (otherTaskInfo != null)
|
||||
{
|
||||
x.OtherTaskId = otherTaskInfo.TaskId;
|
||||
x.OtherArmEnum = otherTaskInfo.ArmEnum;
|
||||
}
|
||||
|
||||
});
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue