IRC_NewDev
parent
b776103328
commit
702cd361fe
|
@ -11593,6 +11593,13 @@
|
||||||
<param name="isReading"></param>
|
<param name="isReading"></param>
|
||||||
<returns></returns>
|
<returns></returns>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:IRaCIS.Core.Application.Services.SubjectVisitService.GetDicomSeriesInfo(IRaCIS.Core.Application.Contracts.GetDicomSeriesInfoInDto)">
|
||||||
|
<summary>
|
||||||
|
获取Series信息
|
||||||
|
</summary>
|
||||||
|
<param name="inDto"></param>
|
||||||
|
<returns></returns>
|
||||||
|
</member>
|
||||||
<member name="M:IRaCIS.Core.Application.Services.SubjectVisitService.GetPTAndCtSeries(IRaCIS.Core.Application.Contracts.GetPTAndCtSeriesInDto)">
|
<member name="M:IRaCIS.Core.Application.Services.SubjectVisitService.GetPTAndCtSeries(IRaCIS.Core.Application.Contracts.GetPTAndCtSeriesInDto)">
|
||||||
<summary>
|
<summary>
|
||||||
获取PTAndCtSeries
|
获取PTAndCtSeries
|
||||||
|
|
|
@ -2075,7 +2075,10 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
{
|
{
|
||||||
return "NA";
|
return "NA";
|
||||||
}
|
}
|
||||||
|
if (TaskAnswer.Count() == 0)
|
||||||
|
{
|
||||||
|
return "0";
|
||||||
|
}
|
||||||
var presentSpd = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.SpleenLength).Select(x => x.Answer).FirstOrDefault().IsNullOrEmptyReturn0();
|
var presentSpd = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.SpleenLength).Select(x => x.Answer).FirstOrDefault().IsNullOrEmptyReturn0();
|
||||||
var lowSplenoncus = TaskAnswer.OrderBy(x => x.SpleenLength).Select(x => x.SpleenLength).FirstOrDefault();
|
var lowSplenoncus = TaskAnswer.OrderBy(x => x.SpleenLength).Select(x => x.SpleenLength).FirstOrDefault();
|
||||||
return (presentSpd - lowSplenoncus).ToString();
|
return (presentSpd - lowSplenoncus).ToString();
|
||||||
|
@ -2099,7 +2102,10 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
{
|
{
|
||||||
return "NA";
|
return "NA";
|
||||||
}
|
}
|
||||||
|
if (taskAnswer.Count() == 0)
|
||||||
|
{
|
||||||
|
return "NA";
|
||||||
|
}
|
||||||
|
|
||||||
var lowSplenoncus = taskAnswer.OrderBy(x => x.SpleenLength).FirstOrDefault();
|
var lowSplenoncus = taskAnswer.OrderBy(x => x.SpleenLength).FirstOrDefault();
|
||||||
return lowSplenoncus.BlindName;
|
return lowSplenoncus.BlindName;
|
||||||
|
|
Loading…
Reference in New Issue