Commit 4c8bea23 authored by tianyiming's avatar tianyiming

fix: 修复统计分析中NA值未被正确排除的问题

parent cf0cf8ad
......@@ -3042,7 +3042,7 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
AtomicReference<Long> otherCount = new AtomicReference<>(0L);
staticCountByGroup.forEach((key, value) -> {
if (!key.startsWith("8")) {
if (!key.startsWith("8") && !key.equals("NA")) {
otherCount.updateAndGet(v -> v + Long.valueOf(value.toString()));
}
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment