feat: app complète - tous les modules

This commit is contained in:
Bastien COIGNOUX
2026-05-04 09:09:10 +02:00
parent 695d4e76d0
commit 432f8ce176
15 changed files with 1355 additions and 108 deletions

View File

@ -82,8 +82,17 @@ export type ContactRecord = RecordModel & {
prenom?: string;
societe?: string;
categorie: string;
specialite?: string;
email?: string;
telephone?: string;
telephone_2?: string;
ville?: string;
zone_intervention?: string;
note?: number;
recommande?: boolean;
taux_horaire?: number;
notes?: string;
is_favori?: boolean;
};
export type AnalyseFinanciereRecord = RecordModel & {
@ -113,9 +122,34 @@ export type VisiteRecord = RecordModel & {
user: string;
bien: string;
date_visite: string;
duree_minutes?: number;
type_visite?: string;
avis_global?: string;
notes_brutes?: string;
rapport_genere?: string;
checklist_reponses?: Record<string, string>;
estimation_travaux_min?: number;
estimation_travaux_max?: number;
score_opportunite?: number;
photos?: string[];
};
export type TacheRecord = RecordModel & {
user: string;
bien?: string;
contact?: string;
titre: string;
description?: string;
type_tache?: string;
priorite?: number;
statut?: string;
date_echeance?: string;
date_rappel?: string;
is_urgent?: boolean;
};
export type TacheExpanded = TacheRecord & {
expand?: { bien?: BienRecord };
};
export type NoteRecord = RecordModel & {