added shiftplan generating logic

This commit is contained in:
2025-10-13 21:45:01 +02:00
parent e015a9a651
commit bd85895408
9 changed files with 1064 additions and 89 deletions

View File

@@ -28,7 +28,7 @@ const EmployeeManagement: React.FC = () => {
console.log('🔄 Loading employees...');
// Add cache-busting parameter to prevent browser caching
const data = await employeeService.getEmployees();
const data = await employeeService.getEmployees(true);
console.log('✅ Employees loaded:', data);
setEmployees(data);