This commit is contained in:
Bhumi Shah
2025-12-05 20:55:19 +03:00
parent 9f437b83e2
commit 884adb5d6e
7 changed files with 0 additions and 29 deletions

View File

@@ -35,7 +35,6 @@ public class BookingServiceImpl implements BookingService {
if (employee == null) {
throw new EmployeeNotFoundException("Employee not found with code: " + employeeCode);
}
LocalDate today = LocalDate.now();
LocalDate endDate = today.plusDays(3);
List<Booking> bookings = bookingRepository.findByDateBetween(today, endDate);