fix: label
This commit is contained in:
parent
52c384f0fb
commit
f10103b5d0
6 changed files with 46 additions and 14 deletions
|
|
@ -507,6 +507,7 @@ export default {
|
|||
miss: 'MISS.',
|
||||
},
|
||||
|
||||
taxpayyerNo: 'Taxpayer Identification Number',
|
||||
citizenId: 'Citizen ID',
|
||||
religion: 'Religion',
|
||||
issueDate: 'Issue Date',
|
||||
|
|
|
|||
|
|
@ -508,6 +508,7 @@ export default {
|
|||
religion: 'ศาสนา',
|
||||
issueDate: 'วันที่ออกหนังสือ',
|
||||
passportExpiryDate: 'วันหiมดอายุหนังสือเดินทาง',
|
||||
taxpayyerNo: 'เลขที่ประจำตัวผู้เสียภาษี',
|
||||
|
||||
ownerName: 'ชื่อนายจ้าง',
|
||||
firstName: 'ชื่อ ',
|
||||
|
|
|
|||
|
|
@ -79,8 +79,8 @@ function titleMode(mode: View): string {
|
|||
})
|
||||
}}
|
||||
</span>
|
||||
<span>เลขประจำตัวผู้เสียภาษี {{ branch.taxNo }}</span>
|
||||
<span>เบอร์โทร {{ branch.telephoneNo }}</span>
|
||||
<span>{{ $t('branch.form.taxNo') }} {{ branch.taxNo }}</span>
|
||||
<span>{{ $t('taskOrder.telephone') }} {{ branch.telephoneNo }}</span>
|
||||
<span>{{ branch.webUrl }}</span>
|
||||
</article>
|
||||
<article>
|
||||
|
|
@ -105,8 +105,18 @@ function titleMode(mode: View): string {
|
|||
})
|
||||
}}
|
||||
</span>
|
||||
<span>เลขประจำตัวผู้เสียภาษี {{ customer.citizenId }}</span>
|
||||
<span>เบอร์โทร {{ customer.telephoneNo }}</span>
|
||||
<span>
|
||||
{{
|
||||
customer.customer.customerType === 'CORP'
|
||||
? `${$t('customer.form.legalPersonNo')} `
|
||||
: `${$t('customer.form.taxpayyerNo')} `
|
||||
}}{{
|
||||
customer.customer.customerType === 'CORP'
|
||||
? customer.codeCustomer
|
||||
: customer.citizenId
|
||||
}}
|
||||
</span>
|
||||
<span>{{ $t('taskOrder.telephone') }} {{ customer.telephoneNo }}</span>
|
||||
</article>
|
||||
</section>
|
||||
<section class="detail-quotation-info">
|
||||
|
|
|
|||
|
|
@ -64,8 +64,8 @@ defineProps<{
|
|||
})
|
||||
}}
|
||||
</span>
|
||||
<span>เลขประจำตัวผู้เสียภาษี {{ branch.taxNo }}</span>
|
||||
<span>เบอร์โทร {{ branch.telephoneNo }}</span>
|
||||
<span>{{ $t('branch.form.taxNo') }} {{ branch.taxNo }}</span>
|
||||
<span>{{ $t('taskOrder.telephone') }} {{ branch.telephoneNo }}</span>
|
||||
<span>{{ branch.webUrl }}</span>
|
||||
</article>
|
||||
<article>
|
||||
|
|
|
|||
|
|
@ -79,8 +79,8 @@ function titleMode(mode: View): string {
|
|||
})
|
||||
}}
|
||||
</span>
|
||||
<span>เลขประจำตัวผู้เสียภาษี {{ branch.taxNo }}</span>
|
||||
<span>เบอร์โทร {{ branch.telephoneNo }}</span>
|
||||
<span>{{ $t('branch.form.taxNo') }} {{ branch.taxNo }}</span>
|
||||
<span>{{ $t('taskOrder.telephone') }} {{ branch.telephoneNo }}</span>
|
||||
<span>{{ branch.webUrl }}</span>
|
||||
</article>
|
||||
<article>
|
||||
|
|
@ -105,8 +105,18 @@ function titleMode(mode: View): string {
|
|||
})
|
||||
}}
|
||||
</span>
|
||||
<span>เลขประจำตัวผู้เสียภาษี {{ customer.citizenId }}</span>
|
||||
<span>เบอร์โทร {{ customer.telephoneNo }}</span>
|
||||
<span>
|
||||
{{
|
||||
customer.customer.customerType === 'CORP'
|
||||
? `${$t('customer.form.legalPersonNo')} `
|
||||
: `${$t('customer.form.taxpayyerNo')} `
|
||||
}}{{
|
||||
customer.customer.customerType === 'CORP'
|
||||
? customer.codeCustomer
|
||||
: customer.citizenId
|
||||
}}
|
||||
</span>
|
||||
<span>{{ $t('taskOrder.telephone') }} {{ customer.telephoneNo }}</span>
|
||||
</article>
|
||||
</section>
|
||||
<section class="detail-quotation-info">
|
||||
|
|
|
|||
|
|
@ -79,8 +79,8 @@ function titleMode(mode: View): string {
|
|||
})
|
||||
}}
|
||||
</span>
|
||||
<span>เลขประจำตัวผู้เสียภาษี {{ branch.taxNo }}</span>
|
||||
<span>เบอร์โทร {{ branch.telephoneNo }}</span>
|
||||
<span>{{ $t('branch.form.taxNo') }} {{ branch.taxNo }}</span>
|
||||
<span>{{ $t('taskOrder.telephone') }} {{ branch.telephoneNo }}</span>
|
||||
<span>{{ branch.webUrl }}</span>
|
||||
</article>
|
||||
<article>
|
||||
|
|
@ -105,8 +105,18 @@ function titleMode(mode: View): string {
|
|||
})
|
||||
}}
|
||||
</span>
|
||||
<span>เลขประจำตัวผู้เสียภาษี {{ customer.citizenId }}</span>
|
||||
<span>เบอร์โทร {{ customer.telephoneNo }}</span>
|
||||
<span>
|
||||
{{
|
||||
customer.customer.customerType === 'CORP'
|
||||
? `${$t('customer.form.legalPersonNo')} `
|
||||
: `${$t('customer.form.taxpayyerNo')} `
|
||||
}}{{
|
||||
customer.customer.customerType === 'CORP'
|
||||
? customer.codeCustomer
|
||||
: customer.citizenId
|
||||
}}
|
||||
</span>
|
||||
<span>{{ $t('taskOrder.telephone') }} {{ customer.telephoneNo }}</span>
|
||||
</article>
|
||||
</section>
|
||||
<section class="detail-quotation-info">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue