fix: Missing quotation marks in SQL query
diff --git a/erpnext/projects/report/employee_hours_utilisation_based_on_timesheet/employee_hours_utilisation_based_on_timesheet.py b/erpnext/projects/report/employee_hours_utilisation_based_on_timesheet/employee_hours_utilisation_based_on_timesheet.py
index 702c85a..e3d6b9b 100644
--- a/erpnext/projects/report/employee_hours_utilisation_based_on_timesheet/employee_hours_utilisation_based_on_timesheet.py
+++ b/erpnext/projects/report/employee_hours_utilisation_based_on_timesheet/employee_hours_utilisation_based_on_timesheet.py
@@ -91,10 +91,10 @@
 		additional_filters = ''
 
 		if self.filters.employee:
-			additional_filters += f'AND tt.employee = {self.filters.employee}'
+			additional_filters += f"AND tt.employee = '{self.filters.employee}'"
 		
 		if self.filters.project:
-			additional_filters += f'AND ttd.project = {self.filters.project}'
+			additional_filters += f"AND ttd.project = '{self.filters.project}'"
  
 		self.filtered_time_logs = frappe.db.sql('''
 			SELECT tt.employee AS employee, ttd.hours AS hours, ttd.billable AS billable, ttd.project AS project