Remove blank line between daily and monthly stats

This commit is contained in:
2025-12-29 01:48:21 +08:00
parent 0d7957c9dd
commit 9411794773

View File

@@ -142,7 +142,6 @@ class DailyReportGenerator:
# 当日实际作业量 # 当日实际作业量
lines.append(f"当日实际作业量:{daily_data['total_teu']}TEU") lines.append(f"当日实际作业量:{daily_data['total_teu']}TEU")
lines.append("")
# 月度统计 # 月度统计
lines.append(f"当月计划作业量:{monthly_data['planned']}TEU (用天数*{self.DAILY_TARGET}TEU)") lines.append(f"当月计划作业量:{monthly_data['planned']}TEU (用天数*{self.DAILY_TARGET}TEU)")