feat : ajout de la page de résumé employé

This commit is contained in:
2026-03-03 08:52:06 +01:00
parent 7a3d01d77f
commit 584cb2ed16
7 changed files with 165 additions and 23 deletions

View File

@@ -1,6 +1,15 @@
import type { Site } from './site'
import type { Contract } from './contract'
export type ContractHistoryItem = {
contractId?: number | null
contractName?: string | null
weeklyHours?: number | null
contractNature: 'CDI' | 'CDD' | 'INTERIM'
startDate: string
endDate?: string | null
}
export type Employee = {
id: number
firstName: string
@@ -10,5 +19,6 @@ export type Employee = {
currentContractNature?: 'CDI' | 'CDD' | 'INTERIM'
currentContractStartDate?: string | null
currentContractEndDate?: string | null
contractHistory?: ContractHistoryItem[]
displayOrder?: number
}