Add weekend shift adjustment calculations and update worker summary display

This commit is contained in:
Ross
2025-12-17 11:44:13 +00:00
parent a347ad7777
commit 710a2aa7c8
3 changed files with 157 additions and 17 deletions
+1 -1
View File
@@ -166,7 +166,7 @@ def load_workers():
rota_b_assignments = defaultdict(list)
for idx, row in rota_b_df.iterrows():
date_val = row.iloc[0]
worker_val = row.iloc[1] if len(row) > 1 else None
worker_val = row.iloc[1].upper() if len(row) > 1 else None
if pd.isna(date_val) or pd.isna(worker_val):
continue
try: