diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index b70b2f17..c32986d4 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -4101,7 +4101,12 @@ const emptyCreateDialog = ref(false); customerFormData.customerType === 'CORP' && customerFormData.customerBranch ? customerFormData.customerBranch[0]?.registerName || '-' - : customerNameInfo || '-' + : (customerFormData.customerBranch[0]?.namePrefix + ? $t( + 'customer.form.prefix.' + + customerFormData.customerBranch[0]?.namePrefix, + ) + ' ' + : '') + customerNameInfo || '-' " :badge-label=" customerFormData.customerType === 'CORP' diff --git a/src/pages/03_customer-management/components/employer/EmployerFormAbout.vue b/src/pages/03_customer-management/components/employer/EmployerFormAbout.vue index 714ebc72..8e38e81b 100644 --- a/src/pages/03_customer-management/components/employer/EmployerFormAbout.vue +++ b/src/pages/03_customer-management/components/employer/EmployerFormAbout.vue @@ -401,8 +401,8 @@ watch( label="Prefix" :model-value=" readonly - ? capitalize(prefixName || '') || '-' - : capitalize(prefixName || '') + ? prefixName.toUpperCase() || '-' + : prefixName.toUpperCase() || '' " @update:model-value=" (v) => (typeof v === 'string' ? (prefixName = v) : '')