feat : ajout d'un onglet formation
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled

This commit is contained in:
2026-04-13 09:41:36 +02:00
parent b185accdbb
commit 4cd30de3e3
29 changed files with 1244 additions and 36 deletions

View File

@@ -0,0 +1,12 @@
import type { Employee } from './employee'
export type Formation = {
id: number
startDate: string
endDate: string
comment: string | null
justificatifPath: string | null
justificatifName: string | null
createdAt: string
employee?: Employee
}

View File

@@ -106,6 +106,8 @@ export type WorkHourDayContextRow = {
creditedMinutes: number
creditedPresenceUnits: number
isDriverContract?: boolean
hasFormation?: boolean
formationLabel?: string | null
}
export type WorkHourDayContext = {