[Attendance-Tool] Filter employees based on date of joining (#15262)

diff --git a/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.py b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.py
index 6ddb722..ea5f4bd 100644
--- a/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.py
+++ b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.py
@@ -16,7 +16,7 @@
 def get_employees(date, department = None, branch = None, company = None):
 	attendance_not_marked = []
 	attendance_marked = []
-	filters = {"status": "Active"}
+	filters = {"status": "Active", "date_of_joining": ["<=", date]}
 	if department != "All":
 		filters["department"] = department
 	if branch != "All":