diff --git a/src/components/CreateBankEntityForm.vue b/src/components/CreateBankEntityForm.vue
index 068646c9a..6344edd01 100644
--- a/src/components/CreateBankEntityForm.vue
+++ b/src/components/CreateBankEntityForm.vue
@@ -26,7 +26,7 @@ const bankEntityFormData = reactive({
});
const countriesFilter = {
- fields: ['id', 'country', 'code'],
+ fields: ['id', 'name', 'code'],
};
const countriesOptions = ref([]);
@@ -79,7 +79,7 @@ onMounted(async () => {
v-model="data.countryFk"
:options="countriesOptions"
option-value="id"
- option-label="country"
+ option-label="name"
hide-selected
:required="true"
:rules="validate('bankEntity.countryFk')"
diff --git a/src/components/CreateNewPostcodeForm.vue b/src/components/CreateNewPostcodeForm.vue
index 064ad1631..25a61a0ca 100644
--- a/src/components/CreateNewPostcodeForm.vue
+++ b/src/components/CreateNewPostcodeForm.vue
@@ -134,7 +134,7 @@ const onProvinceCreated = async ({ name }, formData) => {
:label="t('Country')"
:options="countriesOptions"
hide-selected
- option-label="country"
+ option-label="name"
option-value="id"
v-model="data.countryFk"
:rules="validate('postcode.countryFk')"
diff --git a/src/pages/InvoiceIn/Card/InvoiceInIntrastat.vue b/src/pages/InvoiceIn/Card/InvoiceInIntrastat.vue
index 924356195..6bdc1c0b5 100644
--- a/src/pages/InvoiceIn/Card/InvoiceInIntrastat.vue
+++ b/src/pages/InvoiceIn/Card/InvoiceInIntrastat.vue
@@ -90,7 +90,7 @@ function getTotal(type) {
url="Countries"
auto-load
@on-fetch="(data) => (countries = data)"
- sort-by="country"
+ sort-by="name"
/>
(countriesOptions = data)"
auto-load
/>
@@ -92,7 +92,7 @@ const countriesOptions = ref([]);
@update:model-value="searchFn()"
:options="countriesOptions"
option-value="id"
- option-label="country"
+ option-label="name"
hide-selected
dense
outlined
diff --git a/src/pages/Worker/Card/WorkerBasicData.vue b/src/pages/Worker/Card/WorkerBasicData.vue
index 4f1786a67..d1c27beda 100644
--- a/src/pages/Worker/Card/WorkerBasicData.vue
+++ b/src/pages/Worker/Card/WorkerBasicData.vue
@@ -35,8 +35,8 @@ const workersFilter = {
limit: 30,
};
const countriesFilter = {
- fields: ['id', 'country', 'code'],
- order: 'country ASC',
+ fields: ['id', 'name', 'code'],
+ order: 'name ASC',
limit: 30,
};
const educationLevelsFilter = { fields: ['id', 'name'], order: 'name ASC', limit: 30 };
@@ -124,7 +124,7 @@ const maritalStatus = [
:label="t('Origin country')"
:options="countriesOptions"
hide-selected
- option-label="country"
+ option-label="name"
option-value="id"
v-model="data.originCountryFk"
/>