diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 5b67008c..a6f3d0b8 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -927,6 +927,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public bool IsReadingShowPreviousResults { get; set; } = false; + /// + /// 任务展示访视 读片任务显示是否顺序 + /// + public bool IsReadingTaskViewInOrder { get; set; } = true; + public Guid TrialReadingCriterionId { get; set; } } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index 43b38f17..92e50386 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -1321,10 +1321,12 @@ namespace IRaCIS.Application.Services x.IsReadingShowSubjectInfo, x.DigitPlaces, x.CriterionType, + x.IsReadingTaskViewInOrder, }).FirstOrDefaultAsync(); task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults; task.IsReadingShowSubjectInfo = criterionInfo.IsReadingShowSubjectInfo; + task.IsReadingTaskViewInOrder = criterionInfo.IsReadingTaskViewInOrder; var isBaseLine = false; if (visitTaskInfo.SourceSubjectVisitId != null) {