From f2de5d5500933179eab70da70bbaaa32c219d9ea Mon Sep 17 00:00:00 2001 From: kkfluous Date: Thu, 2 Apr 2026 17:01:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=BD=A6=E8=BE=86=E8=80=83=E6=A0=B8?= =?UTF-8?q?=E8=BF=BD=E8=B8=AAsheet=E7=A7=BB=E5=88=B0=E4=B8=9A=E5=8A=A1?= =?UTF-8?q?=E5=91=98sheet=E5=89=8D=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index 0de5f71..cd8a30d 100644 --- a/main.py +++ b/main.py @@ -74,13 +74,13 @@ for settle_month in [1, 2, 3]: else: write_summary_month(wb, 3, mar_data, ['结转','补发1月','补发2月','当月','累计补发3月']) - # Sheet 5-16: 业务员 + # Sheet 5: 车辆考核追踪 + write_vehicle_tracking_sheet(wb, settle_month, G, master_vehicles, vehicle_payments, vehicle_info) + + # Sheet 6-17: 业务员 for person in sorted(all_persons.keys()): write_salesperson_sheet(wb, person, all_persons[person], settle_month, D, G, month_data, vehicle_payments) - # Sheet 17: 车辆考核追踪 - write_vehicle_tracking_sheet(wb, settle_month, G, master_vehicles, vehicle_payments, vehicle_info) - # 删除默认空sheet if 'Sheet' in wb.sheetnames: del wb['Sheet']