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