修改一版

Uat_Study
he 2022-11-04 16:54:27 +08:00
parent e2ab2dab3d
commit c0bea29626
2 changed files with 7 additions and 1 deletions

View File

@ -874,6 +874,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool IsExistsClinicalData { get; set; }
/// <summary>
/// 修约小数点
/// </summary>
public int? DigitPlaces { get; set; } = 2;
public bool IsExistsNoDicomFile { get; set; } = false;
public string TaskBlindName { get; set; }

View File

@ -1193,7 +1193,7 @@ namespace IRaCIS.Application.Services
{
x.IsReadingShowPreviousResults,
x.IsReadingShowSubjectInfo,
x.DigitPlaces,
}).FirstOrDefaultAsync();
task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults;
@ -1210,6 +1210,7 @@ namespace IRaCIS.Application.Services
VisitTaskId = task.VisitTaskId,
})).Count() > 0;
task.DigitPlaces = criterionInfo.DigitPlaces;
return task;
}