Test.EIImageViewer
parent
fee34656f0
commit
6458690f6d
|
@ -916,6 +916,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public CriterionType CriterionType { get; set; }
|
public CriterionType CriterionType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// eCRF报告是否显示在图像页面
|
||||||
|
/// </summary>
|
||||||
|
public bool IseCRFShowInDicomReading { get; set; } = false;
|
||||||
|
|
||||||
public bool IsExistsNoDicomFile { get; set; } = false;
|
public bool IsExistsNoDicomFile { get; set; } = false;
|
||||||
|
|
||||||
public string TaskBlindName { get; set; }
|
public string TaskBlindName { get; set; }
|
||||||
|
|
|
@ -1389,6 +1389,7 @@ namespace IRaCIS.Application.Services
|
||||||
x.IsReadingShowSubjectInfo,
|
x.IsReadingShowSubjectInfo,
|
||||||
x.DigitPlaces,
|
x.DigitPlaces,
|
||||||
x.CriterionType,
|
x.CriterionType,
|
||||||
|
x.IseCRFShowInDicomReading,
|
||||||
x.IsReadingTaskViewInOrder,
|
x.IsReadingTaskViewInOrder,
|
||||||
}).FirstOrDefaultAsync();
|
}).FirstOrDefaultAsync();
|
||||||
|
|
||||||
|
@ -1424,6 +1425,7 @@ namespace IRaCIS.Application.Services
|
||||||
|
|
||||||
task.DigitPlaces = criterionInfo.DigitPlaces;
|
task.DigitPlaces = criterionInfo.DigitPlaces;
|
||||||
task.CriterionType = criterionInfo.CriterionType;
|
task.CriterionType = criterionInfo.CriterionType;
|
||||||
|
task.IseCRFShowInDicomReading = criterionInfo.IseCRFShowInDicomReading;
|
||||||
|
|
||||||
var blindSubjectCode = await _visitTaskRepository.Where(x => x.Id == task.VisitTaskId).Select(x => x.BlindSubjectCode).FirstNotNullAsync();
|
var blindSubjectCode = await _visitTaskRepository.Where(x => x.Id == task.VisitTaskId).Select(x => x.BlindSubjectCode).FirstNotNullAsync();
|
||||||
task.SubjectCode = blindSubjectCode.IsNullOrEmpty() ? task.SubjectCode : blindSubjectCode;
|
task.SubjectCode = blindSubjectCode.IsNullOrEmpty() ? task.SubjectCode : blindSubjectCode;
|
||||||
|
|
Loading…
Reference in New Issue