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("")