IRC_NewDev
parent
19fdd02429
commit
6c5f669ab6
|
@ -766,9 +766,13 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
#region 计算 这里顺序非常重要 后面计算的值要依赖前面计算的结果
|
#region 计算 这里顺序非常重要 后面计算的值要依赖前面计算的结果
|
||||||
var needAddList = new List<ReadingTaskQuestionAnswer>();
|
var needAddList = new List<ReadingTaskQuestionAnswer>();
|
||||||
|
|
||||||
// 计算斑块统计数据
|
if (inDto.ComputationTrigger != ComputationTrigger.PatchDataStatistics)
|
||||||
await this.CalculatePatchDataStatistics(inDto);
|
{
|
||||||
inDto = await _generalCalculateService.GetReadingCalculateDto(inDto.VisitTaskId);
|
// 计算斑块统计数据
|
||||||
|
await this.CalculatePatchDataStatistics(inDto);
|
||||||
|
inDto = await _generalCalculateService.GetReadingCalculateDto(inDto.VisitTaskId);
|
||||||
|
}
|
||||||
|
|
||||||
List<ReadingCalculateData> calculateList = new List<ReadingCalculateData>()
|
List<ReadingCalculateData> calculateList = new List<ReadingCalculateData>()
|
||||||
{
|
{
|
||||||
// 斑块1-匹配动脉段最小FCT
|
// 斑块1-匹配动脉段最小FCT
|
||||||
|
|
|
@ -2666,6 +2666,12 @@ public enum PET5PSScore
|
||||||
/// 测量值
|
/// 测量值
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MeasuredValue =8,
|
MeasuredValue =8,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 斑块数据统计
|
||||||
|
/// </summary>
|
||||||
|
|
||||||
|
PatchDataStatistics = 9,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue