feat: app complète - tous les modules
This commit is contained in:
@ -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 & {
|
||||
|
||||
Reference in New Issue
Block a user