refactor: show contact tel

This commit is contained in:
Thanaphon Frappet 2025-01-24 13:23:05 +07:00
parent 52a0baa1a4
commit 37642160c4
2 changed files with 5 additions and 2 deletions

View file

@ -130,7 +130,10 @@ function titleMode(mode: View): string {
</div>
<div>
<div>{{ $t('quotation.contactName') }}</div>
<div>{{ details.contactName }}</div>
<div>
{{ details.contactName ? details.contactName : '-' }}
{{ details.contactTel }}
</div>
</div>
<div>
<div>{{ $t('quotation.receiptDialog.paymentDueDate') }}</div>

View file

@ -106,7 +106,7 @@ defineProps<{
</div>
<div>
<div>{{ $t('taskOrder.contacts') }}</div>
<div>{{ details.contactName }}</div>
<div>{{ details.contactName }} {{ details.contactTel }}</div>
</div>
</section>
</article>