From 2077e844d4cbf74fd4f02adf5f83778dde7dbc8f Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 20 Aug 2026 11:13:42 +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(backpo?= =?UTF-8?q?rt=20#58317)=20(#58318)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mihir Kandoi --- .../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: