Test.EIImageViewer
parent
7284df03be
commit
e39f67e4b3
|
@ -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; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue