feat: refs #8772 update TicketSummary to use VnLinkPhone for displaying phone numbers
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Javier Segarra 2025-03-16 13:48:57 +01:00
parent 3a590d5639
commit 2c09969de8
3 changed files with 10 additions and 13 deletions

View File

@ -57,4 +57,5 @@ function handleClick() {
{{ capitalize(type).replace('-', '') }}
</QTooltip>
</QBtn>
{{ phoneNumber }}
</template>

View File

@ -42,7 +42,7 @@ const val = computed(() => $props.value);
<span style="color: var(--vn-label-color)">{{ label }}</span>
</slot>
</div>
<div class="value">
<div class="value" v-if="value || $slots.value">
<slot name="value">
<span :title="value">
{{ dash ? dashIfEmpty(value) : value }}

View File

@ -219,27 +219,23 @@ onMounted(async () => {
/>
<VnLv :label="t('globals.landed')" :value="toDate(entity.landed)" />
<VnLv :label="t('globals.packages')" :value="entity.packages" />
<VnLv :value="entity.address.phone">
<template #label>
{{ t('ticket.summary.consigneePhone') }}
<VnLv :label="t('ticket.summary.consigneePhone')">
<template #value>
<VnLinkPhone :phone-number="entity.address.phone" />
</template>
</VnLv>
<VnLv :value="entity.address.mobile">
<template #label>
{{ t('ticket.summary.consigneeMobile') }}
<VnLv :label="t('ticket.summary.consigneeMobile')">
<template #value>
<VnLinkPhone :phone-number="entity.address.mobile" />
</template>
</VnLv>
<VnLv :value="entity.client.phone">
<template #label>
{{ t('ticket.summary.clientPhone') }}
<VnLv :label="t('ticket.summary.clientPhone')">
<template #value>
<VnLinkPhone :phone-number="entity.client.phone" />
</template>
</VnLv>
<VnLv :value="entity.client.mobile">
<template #label>
{{ t('ticket.summary.clientMobile') }}
<VnLv :label="t('ticket.summary.clientMobile')">
<template #value>
<VnLinkPhone :phone-number="entity.client.mobile" />
</template>
</VnLv>