diff --git a/src/components/03_customer-management/employee/BasicInformation.vue b/src/components/03_customer-management/employee/BasicInformation.vue index 1813c284..aac9a597 100644 --- a/src/components/03_customer-management/employee/BasicInformation.vue +++ b/src/components/03_customer-management/employee/BasicInformation.vue @@ -162,7 +162,9 @@ defineEmits<{ {{ scope.opt.customer.customerType === 'CORP' - ? scope.opt.customerName + ? $i18n.locale === 'eng' + ? scope.opt.registerNameEN + : scope.opt.registerName : $i18n.locale === 'eng' ? `${scope.opt.firstNameEN} ${scope.opt.lastNameEN}` || '-' @@ -217,7 +219,9 @@ defineEmits<{ {{ scope.opt.customer.customerType === 'CORP' - ? scope.opt.customerName + ? $i18n.locale === 'eng' + ? scope.opt.registerNameEN + : scope.opt.registerName : $i18n.locale === 'eng' ? `${scope.opt.firstNameEN} ${scope.opt.lastNameEN}` || '-' : `${scope.opt.firstName} ${scope.opt.lastName}` || '-'