修改一版
parent
e2ab2dab3d
commit
c0bea29626
|
@ -874,6 +874,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public bool IsExistsClinicalData { get; set; }
|
public bool IsExistsClinicalData { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 修约小数点
|
||||||
|
/// </summary>
|
||||||
|
public int? DigitPlaces { get; set; } = 2;
|
||||||
|
|
||||||
public bool IsExistsNoDicomFile { get; set; } = false;
|
public bool IsExistsNoDicomFile { get; set; } = false;
|
||||||
|
|
||||||
public string TaskBlindName { get; set; }
|
public string TaskBlindName { get; set; }
|
||||||
|
|
|
@ -1193,7 +1193,7 @@ namespace IRaCIS.Application.Services
|
||||||
{
|
{
|
||||||
x.IsReadingShowPreviousResults,
|
x.IsReadingShowPreviousResults,
|
||||||
x.IsReadingShowSubjectInfo,
|
x.IsReadingShowSubjectInfo,
|
||||||
|
x.DigitPlaces,
|
||||||
}).FirstOrDefaultAsync();
|
}).FirstOrDefaultAsync();
|
||||||
|
|
||||||
task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults;
|
task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults;
|
||||||
|
@ -1210,6 +1210,7 @@ namespace IRaCIS.Application.Services
|
||||||
VisitTaskId = task.VisitTaskId,
|
VisitTaskId = task.VisitTaskId,
|
||||||
})).Count() > 0;
|
})).Count() > 0;
|
||||||
|
|
||||||
|
task.DigitPlaces = criterionInfo.DigitPlaces;
|
||||||
|
|
||||||
return task;
|
return task;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue