0
0
Fork 0

refactor: refs #7553 merge conflicts

This commit is contained in:
Jon Elias 2024-09-11 10:27:08 +02:00
parent d1138529b2
commit 422907447b
2 changed files with 12 additions and 13 deletions

View File

@ -639,7 +639,6 @@ async function handleInvoiceOutData() {
<i18n>
en:
addTurn: Add turn
en:
invoiceIds: "Invoices have been generated with the following ids: {invoiceIds}"
es:

View File

@ -147,13 +147,13 @@ function toTicketUrl(section) {
:url="toTicketUrl('basic-data')"
:text="t('globals.summary.basicData')"
/>
<VnLv v-if="ticket.ticketState" :label="t('ticket.summary.state')">
<VnLv v-if="entity.ticketState" :label="t('ticket.summary.state')">
<template #value>
<QBadge
text-color="black"
:color="ticket.ticketState.state.classColor"
:color="entity.ticketState.state.classColor"
>
{{ ticket.ticketState.state.name }}
{{ entity.ticketState.state.name }}
</QBadge>
</template>
</VnLv>
@ -172,8 +172,8 @@ function toTicketUrl(section) {
<VnLv :label="t('ticket.summary.zone')">
<template #value>
<span class="link" @click.stop>
{{ ticket?.zone?.name }}
<ZoneDescriptorProxy :id="ticket.zoneFk" />
{{ entity?.zone?.name }}
<ZoneDescriptorProxy :id="entity.zoneFk" />
</span>
</template>
</VnLv>
@ -198,11 +198,11 @@ function toTicketUrl(section) {
<VnLv :label="t('ticket.summary.route')">
<template #value>
<span class="link">
{{ ticket.routeFk }}
<RouteDescriptorProxy
:id="ticket.routeFk"
/> </span></template
></VnLv>
{{ entity.routeFk }}
<RouteDescriptorProxy :id="entity.routeFk" />
</span>
</template>
</VnLv>
<VnLv :label="t('ticket.summary.invoice')">
<template #value>
<span :class="{ link: entity.refFk }">
@ -260,9 +260,9 @@ function toTicketUrl(section) {
<VnLv
:label="t('ticket.summary.consignee')"
:value="
ticket.client.salesPersonUser.nickname +
entity.client.salesPersonUser.nickname +
' #' +
ticket.client.salesPersonUser.id
entity.client.salesPersonUser.id
"
>
</VnLv>