diff --git a/frontend/i18n/locales/fr.json b/frontend/i18n/locales/fr.json index 6e99ccc..86651f0 100644 --- a/frontend/i18n/locales/fr.json +++ b/frontend/i18n/locales/fr.json @@ -135,6 +135,7 @@ "companyName": "Nom du client (Entreprise)", "categories": "Catégorie", "relation": "Distributeur / Courtier", + "relationNone": "Aucun", "relationDistributor": "Dépend du distributeur", "relationBroker": "Dépend du courtier", "distributorName": "Nom du distributeur", diff --git a/frontend/modules/commercial/pages/clients/[id]/edit.vue b/frontend/modules/commercial/pages/clients/[id]/edit.vue index a109988..23b955f 100644 --- a/frontend/modules/commercial/pages/clients/[id]/edit.vue +++ b/frontend/modules/commercial/pages/clients/[id]/edit.vue @@ -41,6 +41,7 @@ :model-value="main.relationType" :options="relationOptions" :label="t('commercial.clients.form.main.relation')" + :empty-option-label="t('commercial.clients.form.main.relationNone')" :disabled="businessReadonly" @update:model-value="onRelationChange" /> diff --git a/frontend/modules/commercial/pages/clients/new.vue b/frontend/modules/commercial/pages/clients/new.vue index 41b015d..e29da36 100644 --- a/frontend/modules/commercial/pages/clients/new.vue +++ b/frontend/modules/commercial/pages/clients/new.vue @@ -35,6 +35,7 @@ :model-value="main.relationType" :options="relationOptions" :label="t('commercial.clients.form.main.relation')" + :empty-option-label="t('commercial.clients.form.main.relationNone')" :disabled="mainLocked" @update:model-value="onRelationChange" />