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;
/// <summary>
/// 任务展示访视 读片任务显示是否顺序
/// </summary>
public bool IsReadingTaskViewInOrder { get; set; } = true;
public Guid TrialReadingCriterionId { get; set; }
}

View File

@ -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)
{