代码修改

This commit is contained in:
he
2024-09-25 09:44:19 +08:00
parent 0bc0421ee3
commit fb6f12903e
3 changed files with 22 additions and 1 deletions
@@ -1139,7 +1139,7 @@ namespace IRaCIS.Core.Application.Service
ReadingQestionType.BasicTable,
ReadingQestionType.Group,
};
qusetionList = qusetionList.Where(x => x.IsShowInDicom && types.Contains(x.Type)).OrderBy(x => x.ShowOrder).ToList();
qusetionList = qusetionList.Where(x => x.IsShowInDicom || types.Contains(x.Type)).OrderBy(x => x.ShowOrder).ToList();
if (inDto.TaskId != null)
@@ -557,6 +557,20 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
}
/// <summary>
/// 计算斑块的统计数据
/// </summary>
/// <param name="inDto"></param>
/// <returns></returns>
public async Task CalculatePatchDataStatistics(ReadingCalculateDto inDto)
{
// FCT 问题信息
var fCTQuestionInfo = inDto.QuestionInfo.Where(x => x.LesionType == LesionType.FCT).FirstOrDefault();
}