修改最多5条靶病灶
continuous-integration/drone/push Build is running
Details
continuous-integration/drone/push Build is running
Details
parent
66e5570d82
commit
c4eabde7a9
|
|
@ -151,9 +151,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
OverallResult = _generalCalculateService.GetTaskanswer(answerList, dictionList, unitDictionary, x.Id, QuestionType.Tumor),
|
OverallResult = _generalCalculateService.GetTaskanswer(answerList, dictionList, unitDictionary, x.Id, QuestionType.Tumor),
|
||||||
DoctorName = x.DoctorUser.LastName + x.DoctorUser.FirstName,
|
DoctorName = x.DoctorUser.LastName + x.DoctorUser.FirstName,
|
||||||
SignTime = x.SignTime?.ToString("yyyy-MM-dd HH:mm:ss"),
|
SignTime = x.SignTime?.ToString("yyyy-MM-dd HH:mm:ss"),
|
||||||
VisitTargetInfoList = getLesionInfo(LesionType.TargetLesion, x.Id,5),
|
VisitTargetInfoList = getLesionInfo(LesionType.TargetLesion, x.Id),
|
||||||
VisitNoTargetInfoList = getLesionInfo(LesionType.NonTargetLesions, x.Id),
|
VisitNoTargetInfoList = getLesionInfo(LesionType.NonTargetLesions, x.Id),
|
||||||
NewVisitTargetInfoList = getLesionInfo(LesionType.NewTargetLesion, x.Id,5),
|
NewVisitTargetInfoList = getLesionInfo(LesionType.NewTargetLesion, x.Id),
|
||||||
NewNoVisitTargetInfoList = getLesionInfo(LesionType.NewNonTargetLesion, x.Id),
|
NewNoVisitTargetInfoList = getLesionInfo(LesionType.NewNonTargetLesion, x.Id),
|
||||||
}).OrderBy(x => x.VisitNum).ToList();
|
}).OrderBy(x => x.VisitNum).ToList();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -149,19 +149,19 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
num++;
|
num++;
|
||||||
|
|
||||||
}
|
}
|
||||||
if (lesionType == LesionType.TargetLesion)
|
//if (lesionType == LesionType.TargetLesion)
|
||||||
{
|
//{
|
||||||
for (int i = num; i <= 5; i++)
|
// for (int i = num; i <= 5; i++)
|
||||||
{
|
// {
|
||||||
VisitLesionInfo target = new VisitLesionInfo
|
// VisitLesionInfo target = new VisitLesionInfo
|
||||||
{
|
// {
|
||||||
Number = i,
|
// Number = i,
|
||||||
};
|
// };
|
||||||
targetInfo.Add(target);
|
// targetInfo.Add(target);
|
||||||
|
|
||||||
}
|
// }
|
||||||
|
|
||||||
}
|
//}
|
||||||
|
|
||||||
return targetInfo;
|
return targetInfo;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
OverallResult = _generalCalculateService.GetTaskanswer(answerList, dictionList, unitDictionary, x.Id, QuestionType.Tumor),
|
OverallResult = _generalCalculateService.GetTaskanswer(answerList, dictionList, unitDictionary, x.Id, QuestionType.Tumor),
|
||||||
DoctorName = x.DoctorUser.LastName + x.DoctorUser.FirstName,
|
DoctorName = x.DoctorUser.LastName + x.DoctorUser.FirstName,
|
||||||
SignTime = x.SignTime?.ToString("yyyy-MM-dd HH:mm:ss"),
|
SignTime = x.SignTime?.ToString("yyyy-MM-dd HH:mm:ss"),
|
||||||
VisitTargetInfoList = getLesionInfo(LesionType.TargetLesion, x.Id,5),
|
VisitTargetInfoList = getLesionInfo(LesionType.TargetLesion, x.Id),
|
||||||
VisitNoTargetInfoList = getLesionInfo(LesionType.NonTargetLesions, x.Id),
|
VisitNoTargetInfoList = getLesionInfo(LesionType.NonTargetLesions, x.Id),
|
||||||
}).OrderBy(x => x.VisitNum).ToList();
|
}).OrderBy(x => x.VisitNum).ToList();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue