diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index cbbcf152..a55323f9 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -916,6 +916,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public CriterionType CriterionType { get; set; } + /// + /// eCRF报告是否显示在图像页面 + /// + public bool IseCRFShowInDicomReading { get; set; } = false; + public bool IsExistsNoDicomFile { get; set; } = false; public string TaskBlindName { get; set; } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index ec9b71eb..50f0525a 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -1389,6 +1389,7 @@ namespace IRaCIS.Application.Services x.IsReadingShowSubjectInfo, x.DigitPlaces, x.CriterionType, + x.IseCRFShowInDicomReading, x.IsReadingTaskViewInOrder, }).FirstOrDefaultAsync(); @@ -1424,6 +1425,7 @@ namespace IRaCIS.Application.Services task.DigitPlaces = criterionInfo.DigitPlaces; task.CriterionType = criterionInfo.CriterionType; + task.IseCRFShowInDicomReading = criterionInfo.IseCRFShowInDicomReading; var blindSubjectCode = await _visitTaskRepository.Where(x => x.Id == task.VisitTaskId).Select(x => x.BlindSubjectCode).FirstNotNullAsync(); task.SubjectCode = blindSubjectCode.IsNullOrEmpty() ? task.SubjectCode : blindSubjectCode;