diff --git a/IRaCIS.Core.API/IRaCIS.Core.API.csproj b/IRaCIS.Core.API/IRaCIS.Core.API.csproj index b85f69250..3962560b1 100644 --- a/IRaCIS.Core.API/IRaCIS.Core.API.csproj +++ b/IRaCIS.Core.API/IRaCIS.Core.API.csproj @@ -124,6 +124,9 @@ Always + + Always + diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index 17ec78301..41e9918a6 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -6918,11 +6918,6 @@ 靶病灶信息 - - - 非靶病灶信息 - - 访视名称 diff --git a/IRaCIS.Core.Application/Service/ReadingCalculate/RECIST1Point1CalculateService.cs b/IRaCIS.Core.Application/Service/ReadingCalculate/RECIST1Point1CalculateService.cs index db4861c89..92d304cd2 100644 --- a/IRaCIS.Core.Application/Service/ReadingCalculate/RECIST1Point1CalculateService.cs +++ b/IRaCIS.Core.Application/Service/ReadingCalculate/RECIST1Point1CalculateService.cs @@ -204,16 +204,20 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate SubjectCode = subjectCode, VisitList= exportVisitDatas.Skip(i*3).Take(3).ToList(), }; + resultdata.Add(export); } - + var value = new + { + VisitList = resultdata + }; var templatePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"wwwroot/ReadReoprtTemplate/TumorEvaluation_RECIST1.1_CN_V1.docx"); var outputFilePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, $@"wwwroot/ReadReoprtTemplate/downLoad/{inDto.DownLoadGuid}.docx"); - MiniWord.SaveAsByTemplate(outputFilePath, templatePath, resultdata); + MiniWord.SaveAsByTemplate(outputFilePath, templatePath, value); //// 获取文件夹中的所有文件路径