From 5bac8963296648cbf9a385a90f195bcf9beb5270 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 --- 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 9598786821d..97095dfa007 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, }, }; };