Test.EIImageViewer
he 2022-11-25 13:43:25 +08:00
parent 7284df03be
commit e39f67e4b3
2 changed files with 7 additions and 0 deletions

View File

@ -927,6 +927,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool IsReadingShowPreviousResults { get; set; } = false; public bool IsReadingShowPreviousResults { get; set; } = false;
/// <summary>
/// 任务展示访视 读片任务显示是否顺序
/// </summary>
public bool IsReadingTaskViewInOrder { get; set; } = true;
public Guid TrialReadingCriterionId { get; set; } public Guid TrialReadingCriterionId { get; set; }
} }

View File

@ -1321,10 +1321,12 @@ namespace IRaCIS.Application.Services
x.IsReadingShowSubjectInfo, x.IsReadingShowSubjectInfo,
x.DigitPlaces, x.DigitPlaces,
x.CriterionType, x.CriterionType,
x.IsReadingTaskViewInOrder,
}).FirstOrDefaultAsync(); }).FirstOrDefaultAsync();
task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults; task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults;
task.IsReadingShowSubjectInfo = criterionInfo.IsReadingShowSubjectInfo; task.IsReadingShowSubjectInfo = criterionInfo.IsReadingShowSubjectInfo;
task.IsReadingTaskViewInOrder = criterionInfo.IsReadingTaskViewInOrder;
var isBaseLine = false; var isBaseLine = false;
if (visitTaskInfo.SourceSubjectVisitId != null) if (visitTaskInfo.SourceSubjectVisitId != null)
{ {