From 0f00581f839f64a017d1c75408192f58d8990d92 Mon Sep 17 00:00:00 2001 From: Pugazhendhi Velu Date: Mon, 3 Nov 2025 15:54:00 +0000 Subject: [PATCH] fix: add is_group filter in task for timesheet (cherry picked from commit 5bac8963296648cbf9a385a90f195bcf9beb5270) --- erpnext/projects/doctype/timesheet/timesheet.js | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/projects/doctype/timesheet/timesheet.js b/erpnext/projects/doctype/timesheet/timesheet.js index 4c78d939ebc..9b01d1c429f 100644 --- a/erpnext/projects/doctype/timesheet/timesheet.js +++ b/erpnext/projects/doctype/timesheet/timesheet.js @@ -21,6 +21,7 @@ frappe.ui.form.on("Timesheet", { filters: { project: child.project, status: ["!=", "Cancelled"], + is_group: 0, }, }; };