agent creation

This commit is contained in:
OnlyPapy98
2026-01-05 14:14:41 +01:00
parent afa5fab55d
commit 95095016d2
11 changed files with 126 additions and 324 deletions

View File

@@ -5,7 +5,7 @@ export type AgentStatus = 'ACTIF' | 'INACTIF' | 'SUSPENDU';
export interface Agent {
id: string;
code: string;
profile: string; // ex. AGENT, SUPERVISEUR, CAISSIER
profil: string; // ex. AGENT, SUPERVISEUR, CAISSIER
principalCode?: string; // Agent principal
caisseProfile?: string;
statut: AgentStatus;