修改
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2025-04-24 09:55:49 +08:00
parent bf9e8a6758
commit 4e03071c4c
1 changed files with 6 additions and 1 deletions

View File

@ -832,6 +832,11 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
rowInfo.OrganInfoId = newOrgan.Id;
}
}
if(rowInfo.MeasureData!=null)
{
rowInfo.MeasureData = rowInfo.MeasureData.Replace(recistTask.Id.ToString(), taskinfo.Id.ToString());
}
rowInfo.VisitTaskId = visitTaskId;
rowInfo.IsCurrentTaskAdd = true;
rowInfo.Id = NewId.NextGuid();
@ -855,7 +860,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
foreach (var item in recistTableAnswers)
{
item.QuestionId = tableRowAnswers.Where(y => y.OriginalId == item.RowId).Select(x => x.QuestionId).FirstOrDefault();
item.TableQuestionId = tableQuestionList.Where(x => x.ReadingQuestionId == item.QuestionId && x.QuestionMark == item.QuestionMark).Select(x => x.Id).FirstOrDefault();
}