+ {{ scope.opt.code }} {{ $t('branchName') }}:
+ {{
+ $i18n.locale === 'en-US' ? scope.opt.nameEN : scope.opt.name
+ }}
+
+
+
+ {{ $t('customerBranchName') }}:
+ {{
+ $i18n.locale === 'en-US'
+ ? 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
+ }}
+ {{
+ $i18n.locale === 'en-US'
+ ? scope.opt.subDistrict.nameEN
+ : scope.opt.subDistrict.name
+ }}
+ {{
+ $i18n.locale === 'en-US'
+ ? scope.opt.district.nameEN
+ : scope.opt.district.name
+ }}
+ {{
+ $i18n.locale === 'en-US'
+ ? scope.opt.province.nameEN
+ : scope.opt.province.name
+ }}
+ {{ scope.opt.zipCode }}
+
+