diff --git a/src/components/03_customer-management/BasicInformation.vue b/src/components/03_customer-management/BasicInformation.vue index 88554f21..f42efd4a 100644 --- a/src/components/03_customer-management/BasicInformation.vue +++ b/src/components/03_customer-management/BasicInformation.vue @@ -239,6 +239,16 @@ onMounted(async () => {}); ? scope.opt.customer.customerNameEN : scope.opt.customer.customerName }} + {{ + scope.opt.customer.customerType === 'PERS' + ? $t('formDialogCustomerName') + : $t('companyOwnerName') + }}: + {{ + $i18n.locale === 'en-US' + ? scope.opt.customer.personName + : scope.opt.customer.personName + }} {{ $t('address') }} {{ $i18n.locale === 'en-US' ? scope.opt.addressEN : scope.opt.address @@ -266,6 +276,16 @@ onMounted(async () => {}); ? scope.opt.customer.customerNameEN : scope.opt.customer.customerName }} + {{ + scope.opt.customer.customerType === 'PERS' + ? $t('formDialogCustomerName') + : $t('companyOwnerName') + }}: + {{ + $i18n.locale === 'en-US' + ? scope.opt.customer.personName + : scope.opt.customer.personName + }} {{ $t('address') }} {{ $i18n.locale === 'en-US'