diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs index e2c20f20f..2b4540f13 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/LuganoCalculateService.cs @@ -1713,7 +1713,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate var taskAnswer = await GetVisitTaskAnswerList(inDto); if (inDto.IsBaseLine) { - return string.Empty; + return "NA"; } @@ -2053,7 +2053,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate { if (inDto.IsBaseLine) { - return string.Empty; + return "NA"; } var lastTaskId = await GetLastVisitTaskId(inDto); @@ -2620,10 +2620,10 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate { NewLesionAssessment result = NewLesionAssessment.No; - //if (inDto.IsBaseLine) - //{ - // return NewLesionAssessment.NA.GetEnumInt(); - //} + if (inDto.IsBaseLine) + { + return NewLesionAssessment.NA.GetEnumInt(); + } var tableRows = inDto.QuestionInfo.Where(x => x.LesionType == LesionType.NewLesions).SelectMany(x => x.TableRowInfoList).ToList(); diff --git a/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs b/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs index fc4875c02..fa20e384d 100644 --- a/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs +++ b/IRaCIS.Core.Infra.EFCore/Common/AuditingData.cs @@ -2165,7 +2165,6 @@ namespace IRaCIS.Core.Infra.EFCore.Common //临床数据表格问题 - foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(TrialClinicalTableQuestion))) { var type = GetEntityAuditOpt(item);