From 00baaf4b2828da302f92c62755f7b228f06b8c5c Mon Sep 17 00:00:00 2001 From: "qichi.liang" Date: Mon, 29 Dec 2025 01:50:12 +0800 Subject: [PATCH] Hide unaccounted data from report (still calculated internally) --- src/report.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/report.py b/src/report.py index b1be690..ffe1eff 100644 --- a/src/report.py +++ b/src/report.py @@ -145,8 +145,6 @@ class DailyReportGenerator: # 月度统计 lines.append(f"当月计划作业量:{monthly_data['planned']}TEU (用天数*{self.DAILY_TARGET}TEU)") - if monthly_data.get('unaccounted', 0) > 0: - lines.append(f"当月未统计数据:{monthly_data['unaccounted']}TEU") lines.append(f"当月实际作业量:{monthly_data['actual']}TEU") lines.append(f"当月完成比例:{monthly_data['completion']}%") lines.append("")