21 lines
594 B
TypeScript
21 lines
594 B
TypeScript
export const CONTACT_CATEGORIE_LABELS: Record<string, string> = {
|
|
notaire: 'Notaire',
|
|
agent_immo: 'Agent immobilier',
|
|
artisan_gros_oeuvre: 'Artisan gros œuvre',
|
|
artisan_second_oeuvre: 'Artisan second œuvre',
|
|
artisan_finitions: 'Artisan finitions',
|
|
banquier: 'Banquier',
|
|
courtier: 'Courtier',
|
|
diagnostiqueur: 'Diagnostiqueur',
|
|
geometre: 'Géomètre',
|
|
avocat: 'Avocat',
|
|
comptable: 'Comptable',
|
|
vendeur: 'Vendeur',
|
|
acheteur: 'Acheteur',
|
|
autre: 'Autre',
|
|
};
|
|
|
|
export function labelContactCategorie(key: string): string {
|
|
return CONTACT_CATEGORIE_LABELS[key] ?? key;
|
|
}
|