From 941baffdda02fb993c9a7969866b6221823e7175 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 20 Aug 2026 09:42:30 +0530 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20to=20and=20from=20date=20filte?= =?UTF-8?q?rs=20in=20timesheet=20billing=20summary=20re=E2=80=A6=20(#58317?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../timesheet_billing_summary/timesheet_billing_summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py b/erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py index 966dab9eee1..2b1266a3c7c 100644 --- a/erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py +++ b/erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py @@ -95,7 +95,7 @@ def get_data(filters, group_fieldname=None): if filters.get("from_date"): _filters.append(("Timesheet Detail", "from_time", ">=", filters.get("from_date"))) if filters.get("to_date"): - _filters.append(("Timesheet Detail", "to_time", "<=", filters.get("to_date"))) + _filters.append(("Timesheet Detail", "to_time", "<=", filters.get("to_date") + " 23:59:59")) if not filters.get("include_draft_timesheets"): _filters.append(("docstatus", "=", DocStatus.submitted())) else: