修改计算
This commit is contained in:
@@ -2021,6 +2021,11 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||
{
|
||||
return "NA";
|
||||
}
|
||||
var presentSpd = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.SpleenLength).Select(x => x.Answer).FirstOrDefault().IsNullOrEmptyReturnNull();
|
||||
if (presentSpd == null)
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
var lowSplenoncus = taskAnswer.Where(x=>x.SpleenLength!=0).OrderBy(x => x.SpleenLength).FirstOrDefault();
|
||||
if (lowSplenoncus != null)
|
||||
|
||||
+5
-1
@@ -2019,7 +2019,11 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||
{
|
||||
return "NA";
|
||||
}
|
||||
|
||||
var presentSpd = inDto.QuestionInfo.Where(x => x.QuestionType == QuestionType.SpleenLength).Select(x => x.Answer).FirstOrDefault().IsNullOrEmptyReturnNull();
|
||||
if (presentSpd == null)
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
var lowSplenoncus = taskAnswer.Where(x => x.SpleenLength != 0).OrderBy(x => x.SpleenLength).FirstOrDefault();
|
||||
if (lowSplenoncus != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user