修改
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user