IRC_NewDev
he 2023-11-07 10:50:13 +08:00
parent 33fc733f6d
commit 3457283220
1 changed files with 1 additions and 1 deletions

View File

@ -1609,7 +1609,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
public async Task<decimal> GetSPD(ReadingCalculateDto inDto)
{
decimal result = 0;
var rowInfo = inDto.QuestionInfo.Where(x => x.LesionType == LesionType.TargetLesion).SelectMany(x => x.TableRowInfoList).Where(x=>x.RowIndex%1==0).ToList();
var rowInfo = inDto.QuestionInfo.Where(x => x.LesionType == LesionType.TargetLesion).SelectMany(x => x.TableRowInfoList).ToList();
var tableQuestionList = rowInfo.SelectMany(x => x.TableQuestionList).ToList();