Test.EIImageViewer
parent
fee34656f0
commit
6458690f6d
|
@ -916,6 +916,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public CriterionType CriterionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// eCRF报告是否显示在图像页面
|
||||
/// </summary>
|
||||
public bool IseCRFShowInDicomReading { get; set; } = false;
|
||||
|
||||
public bool IsExistsNoDicomFile { get; set; } = false;
|
||||
|
||||
public string TaskBlindName { get; set; }
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue