fix: person name on select (employee form)

This commit is contained in:
puriphatt 2024-06-19 07:14:11 +00:00
parent 0a4eebaea6
commit 918ca22c10

View file

@ -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'