forked from verdnatura/salix-front
refactor: refs #7553 merge conflicts
This commit is contained in:
parent
d1138529b2
commit
422907447b
|
@ -639,7 +639,6 @@ async function handleInvoiceOutData() {
|
|||
<i18n>
|
||||
en:
|
||||
addTurn: Add turn
|
||||
en:
|
||||
invoiceIds: "Invoices have been generated with the following ids: {invoiceIds}"
|
||||
|
||||
es:
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue