using cp for plans

This commit is contained in:
2025-10-18 23:35:46 +02:00
parent 07c495a6dc
commit 372b9b2f20
13 changed files with 485 additions and 9 deletions

View File

@@ -1,5 +0,0 @@
// frontend/src/services/scheduling.ts/scheduling.ts
import { Employee, EmployeeAvailability } from '../models/Employee';
import { ScheduledShift, ShiftPlan } from '../models/ShiftPlan';
import { shiftAssignmentService } from './shiftAssignmentService';

View File

@@ -2,7 +2,7 @@
import { ShiftPlan, ScheduledShift } from '../models/ShiftPlan';
import { Employee, EmployeeAvailability } from '../models/Employee';
import { authService } from './authService';
import { IntelligentShiftScheduler, AssignmentResult, WeeklyPattern } from './scheduling';
import { IntelligentShiftScheduler, AssignmentResult, WeeklyPattern } from '../hooks/useScheduling';
import { isScheduledShift } from '../models/helpers';
const API_BASE_URL = 'http://localhost:3002/api/scheduled-shifts';