Compare commits

..

No commits in common. "3ca9be0a29db5aacc2b6f6294bae510e85b527ca" and "282ba96c618c9a785ef0cc09c4d89a3b39fa0a49" have entirely different histories.

2 changed files with 3 additions and 13 deletions

View File

@ -766,13 +766,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
#region 计算 这里顺序非常重要 后面计算的值要依赖前面计算的结果
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>()
{
// 斑块1-匹配动脉段最小FCT

View File

@ -2666,12 +2666,6 @@ public enum PET5PSScore
/// 测量值
/// </summary>
MeasuredValue =8,
/// <summary>
/// 斑块数据统计
/// </summary>
PatchDataStatistics = 9,
}
/// <summary>