Merge pull request #57972 from aerele/fix/workstation-time-in-mins

refactor: drop redundant time_in_mins assignment in workstation complete_job
This commit is contained in:
Mihir Kandoi
2026-08-11 12:08:43 +05:30
committed by GitHub

View File

@@ -242,7 +242,6 @@ class Workstation(Document):
for row in doc.time_logs:
if not row.to_time:
row.to_time = to_time
row.time_in_mins = time_diff_in_hours(row.to_time, row.from_time) / 60
row.completed_qty = qty
doc.save()