diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml
index a6065e451..c54d80530 100644
--- a/src/i18n/locale/en.yml
+++ b/src/i18n/locale/en.yml
@@ -106,6 +106,9 @@ globals:
weight: Weight
error: Ups! Something went wrong
recalc: Recalculate
+ small: Small
+ medium: Medium
+ big: Big
pageTitles:
logIn: Login
addressEdit: Update address
@@ -942,6 +945,7 @@ supplier:
isActive: Active
isPayMethodChecked: PayMethod checked
note: Notes
+ size: Size
fiscalData:
name: Social name *
nif: Tax number *
diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml
index 6f01f7dd1..8ee3c7d90 100644
--- a/src/i18n/locale/es.yml
+++ b/src/i18n/locale/es.yml
@@ -108,6 +108,9 @@ globals:
weight: Peso
error: ¡Ups! Algo salió mal
recalc: Recalcular
+ small: Pequeño/a
+ medium: Mediano/a
+ big: Grande
pageTitles:
logIn: Inicio de sesión
addressEdit: Modificar consignatario
@@ -940,6 +943,7 @@ supplier:
isActive: Activo
isPayMethodChecked: Método de pago validado
note: Notas
+ size: Tamaño
fiscalData:
name: Razón social *
nif: NIF/CIF *
diff --git a/src/pages/Supplier/Card/SupplierBasicData.vue b/src/pages/Supplier/Card/SupplierBasicData.vue
index 52964557d..ab8f9a4b1 100644
--- a/src/pages/Supplier/Card/SupplierBasicData.vue
+++ b/src/pages/Supplier/Card/SupplierBasicData.vue
@@ -1,5 +1,4 @@
+
+
+
+
+ {{ scope.opt?.name }}
+
+ {{ scope.opt?.size }}
+
+
+
+
+
es:
Responsible for approving invoices: Responsable de aprobar las facturas
+ Small(1-5), Medium(6-50), Big(> 50): Pequeño(1-5), Mediano(6-50), Grande(> 50)
diff --git a/src/pages/Supplier/Card/SupplierSummary.vue b/src/pages/Supplier/Card/SupplierSummary.vue
index 5791db1eb..2ce5a7dce 100644
--- a/src/pages/Supplier/Card/SupplierSummary.vue
+++ b/src/pages/Supplier/Card/SupplierSummary.vue
@@ -65,6 +65,22 @@ const getUrl = (section) => `#/supplier/${entityId.value}/${section}`;
{{ dashIfEmpty(supplier.note) }}
+
+
+
+ {{
+ dashIfEmpty(
+ supplier.companySize &&
+ t('globals.' + supplier.companySize)
+ )
+ }}
+
+
+