diff --git a/erpnext/projects/doctype/timesheet/timesheet.py b/erpnext/projects/doctype/timesheet/timesheet.py index a30a21b5140..cb23ff848c7 100644 --- a/erpnext/projects/doctype/timesheet/timesheet.py +++ b/erpnext/projects/doctype/timesheet/timesheet.py @@ -145,7 +145,7 @@ class Timesheet(Document): def validate_dates(self): for data in self.time_logs: - if time_diff_in_hours(data.to_time, data.from_time) < 0: + if data.from_time and data.to_time and time_diff_in_hours(data.to_time, data.from_time) < 0: frappe.throw(_("To date cannot be before from date")) def validate_time_logs(self):