Compare commits
No commits in common. "d5879e28d7a1c4fd09b7757aea17a9b6179fb280" and "290506a06090fe88b2fc94bb0e5c93b3a9de4e3e" have entirely different histories.
d5879e28d7
...
290506a060
|
@ -798,14 +798,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
public ReadingVersion? ReadingVersionEnum { get; set; }
|
||||
|
||||
|
||||
public ReadingTool? ReadingTool { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 阅片工具
|
||||
/// </summary>
|
||||
public List<string> ReadingToolList { get; set; } = new List<string>();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -393,12 +393,6 @@ namespace IRaCIS.Core.Application.Service.RC
|
|||
|
||||
indto.ReadingVersionEnum=(ReadingVersion)maxDic;
|
||||
}
|
||||
|
||||
indto.ReadingTool = ReadingTool.Dicom;
|
||||
indto.ReadingToolList = new List<string>()
|
||||
{
|
||||
"Length", "Bidirectional", "RectangleROI", "ArrowAnnotate", "CircleROI"
|
||||
};
|
||||
var entity = await _readingQuestionCriterionTrialRepository.InsertOrUpdateAsync(indto, true);
|
||||
return ResponseOutput.Ok(entity.Id.ToString());
|
||||
}
|
||||
|
|
|
@ -828,13 +828,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
#region 计算 这里顺序非常重要 后面计算的值要依赖前面计算的结果
|
||||
var needAddList = new List<ReadingTaskQuestionAnswer>();
|
||||
|
||||
List< ComputationTrigger > computationTriggers = new List<ComputationTrigger>()
|
||||
{
|
||||
ComputationTrigger.PatchDataStatistics,
|
||||
ComputationTrigger.SaveEICRFQuestions,
|
||||
|
||||
};
|
||||
if (!computationTriggers.Contains(inDto.ComputationTrigger))
|
||||
if (inDto.ComputationTrigger != ComputationTrigger.PatchDataStatistics)
|
||||
{
|
||||
// 计算斑块统计数据
|
||||
await this.CalculatePatchDataStatistics(inDto);
|
||||
|
|
|
@ -2903,11 +2903,6 @@ public enum PET5PSScore
|
|||
/// 保存肝脏分段
|
||||
/// </summary>
|
||||
SaveLiverSegments = 11,
|
||||
|
||||
/// <summary>
|
||||
/// 保存eCRF
|
||||
/// </summary>
|
||||
SaveEICRFQuestions=12,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in New Issue