调整检测报告

This commit is contained in:
2025-10-21 15:07:49 +08:00
parent 51fdf6bf59
commit dddffe43cb
2 changed files with 41 additions and 3 deletions

View File

@@ -1983,9 +1983,9 @@ public class ResultServiceImpl implements IResultService {
if (isZeroFiltered) {
zeroFilteredPoints++; // 统计双零点
// 双零情况,记录但不加入结果判定
zeroFilteredPhases.add(phase.toUpperCase() + "");
// 将结果改为特殊标记,不参与整体结论判定
singlePhaseData.put(ItemReportKeyEnum.RESULT.getKey(), "双零过滤");
zeroFilteredPhases.add(phase.toUpperCase() + "");
// 将结果改为特殊标记,不参与整体结论判定
singlePhaseData.put(ItemReportKeyEnum.RESULT.getKey(), "/");
} else {
// 有非双零数据
hasNonZeroData = true;