Modulo de rutas #195
|
@ -202,16 +202,16 @@ function navigateToRouteSummary(event, row) {
|
||||||
@row-click="navigateToRouteSummary"
|
@row-click="navigateToRouteSummary"
|
||||||
>
|
>
|
||||||
<template #body-cell-ID="props">
|
<template #body-cell-ID="props">
|
||||||
<QTd :props="props" @click.stop>
|
<QTd :props="props">
|
||||||
<span class="link">
|
<span class="link" @click.stop>
|
||||||
{{ props.value }}
|
{{ props.value }}
|
||||||
<RouteDescriptorProxy :id="props.value" />
|
<RouteDescriptorProxy :id="props.value" />
|
||||||
</span>
|
</span>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-received="props">
|
<template #body-cell-received="props">
|
||||||
<QTd :props="props" @click.stop>
|
<QTd :props="props">
|
||||||
<span :class="props.value && 'link'">
|
<span :class="props.value && 'link'" @click.stop>
|
||||||
{{ dashIfEmpty(props.value) }}
|
{{ dashIfEmpty(props.value) }}
|
||||||
<InvoiceInDescriptorProxy
|
<InvoiceInDescriptorProxy
|
||||||
v-if="props.value"
|
v-if="props.value"
|
||||||
|
@ -221,8 +221,8 @@ function navigateToRouteSummary(event, row) {
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-autonomous="props">
|
<template #body-cell-autonomous="props">
|
||||||
<QTd :props="props" @click.stop>
|
<QTd :props="props">
|
||||||
<span class="link">
|
<span class="link" @click.stop>
|
||||||
{{ props.value }}
|
{{ props.value }}
|
||||||
<SupplierDescriptorProxy
|
<SupplierDescriptorProxy
|
||||||
v-if="props.row?.supplierFk"
|
v-if="props.row?.supplierFk"
|
||||||
|
|
|
@ -228,8 +228,8 @@ function navigateToRoadmapSummary(event, row) {
|
||||||
@row-click="navigateToRoadmapSummary"
|
@row-click="navigateToRoadmapSummary"
|
||||||
>
|
>
|
||||||
<template #body-cell-carrier="props">
|
<template #body-cell-carrier="props">
|
||||||
<QTd :props="props" @click.stop>
|
<QTd :props="props">
|
||||||
<span v-if="props.value" class="link">
|
<span v-if="props.value" class="link" @click.stop>
|
||||||
{{ props.value }}
|
{{ props.value }}
|
||||||
<SupplierDescriptorProxy
|
<SupplierDescriptorProxy
|
||||||
:id="props.row?.supplier?.id"
|
:id="props.row?.supplier?.id"
|
||||||
|
|
Loading…
Reference in New Issue