(20260217) Ready to test on production now

This commit is contained in:
2026-02-17 16:12:03 +05:30
parent 079d873a6c
commit 9b4c5a8528
+1 -1
View File
@@ -621,7 +621,7 @@ def compute_work_done(
work_hours = work_seconds / (60 * 60) work_hours = work_seconds / (60 * 60)
if work_hours > 10.0: work_status = "OT" if work_hours > 10.0: work_status = "OT"
elif 7.5 < work_hours <= 10.0: work_status = "P" elif 7.5 < work_hours <= 10.0: work_status = "P"
elif 2.5 < work_hours <= 5.0: work_status = "H" elif 4.5 < work_hours <= 7.5: work_status = "H"
else: work_status = "A" else: work_status = "A"
# Save the data: # Save the data: