recherche
This commit is contained in:
@ -116,6 +116,34 @@ export type AnalyseFinanciereRecord = RecordModel & {
|
||||
marge_nette?: number;
|
||||
marge_nette_pct?: number;
|
||||
notes?: string;
|
||||
/** Prix de revente estimé au m² (référence marché / grille perso). */
|
||||
prix_revente_m2?: number;
|
||||
};
|
||||
|
||||
export type AnalyseSecteurRecord = RecordModel & {
|
||||
user: string;
|
||||
ville: string;
|
||||
notes?: string;
|
||||
};
|
||||
|
||||
export type NoteProspectionRecord = RecordModel & {
|
||||
user: string;
|
||||
question: string;
|
||||
reponse?: string;
|
||||
categorie?: string;
|
||||
};
|
||||
|
||||
export type GrillePrixTypeBien = 'appartement' | 'maison' | 'immeuble';
|
||||
export type GrillePrixEtat = 'bon_etat' | 'a_renover' | 'travaux_lourds';
|
||||
|
||||
export type GrillePrixRecord = RecordModel & {
|
||||
user: string;
|
||||
type_bien: GrillePrixTypeBien;
|
||||
etat: GrillePrixEtat;
|
||||
prix_achat_m2: number;
|
||||
prix_revente_m2: number;
|
||||
marge_estimee_pct?: number;
|
||||
ville?: string;
|
||||
};
|
||||
|
||||
export type VisiteRecord = RecordModel & {
|
||||
|
||||
Reference in New Issue
Block a user