Compare commits
No commits in common. "3ca9be0a29db5aacc2b6f6294bae510e85b527ca" and "282ba96c618c9a785ef0cc09c4d89a3b39fa0a49" have entirely different histories.
3ca9be0a29
...
282ba96c61
|
@ -766,13 +766,9 @@ 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,12 +2666,6 @@ public enum PET5PSScore
|
||||||
/// 测量值
|
/// 测量值
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MeasuredValue =8,
|
MeasuredValue =8,
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 斑块数据统计
|
|
||||||
/// </summary>
|
|
||||||
|
|
||||||
PatchDataStatistics = 9,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue