Modulo de rutas #195

Merged
jsegarra merged 49 commits from :feature/route-module into dev 2024-03-14 12:44:43 +00:00
2 changed files with 8 additions and 8 deletions
Showing only changes of commit b2be4c1380 - Show all commits

View File

@ -202,16 +202,16 @@ function navigateToRouteSummary(event, row) {
@row-click="navigateToRouteSummary"
>
<template #body-cell-ID="props">
<QTd :props="props" @click.stop>
<span class="link">
<QTd :props="props">
<span class="link" @click.stop>
{{ props.value }}
<RouteDescriptorProxy :id="props.value" />
</span>
</QTd>
</template>
<template #body-cell-received="props">
<QTd :props="props" @click.stop>
<span :class="props.value && 'link'">
<QTd :props="props">
<span :class="props.value && 'link'" @click.stop>
{{ dashIfEmpty(props.value) }}
<InvoiceInDescriptorProxy
v-if="props.value"
@ -221,8 +221,8 @@ function navigateToRouteSummary(event, row) {
</QTd>
</template>
<template #body-cell-autonomous="props">
<QTd :props="props" @click.stop>
<span class="link">
<QTd :props="props">
<span class="link" @click.stop>
{{ props.value }}
<SupplierDescriptorProxy
v-if="props.row?.supplierFk"

View File

@ -228,8 +228,8 @@ function navigateToRoadmapSummary(event, row) {
@row-click="navigateToRoadmapSummary"
>
<template #body-cell-carrier="props">
<QTd :props="props" @click.stop>
<span v-if="props.value" class="link">
<QTd :props="props">
<span v-if="props.value" class="link" @click.stop>
{{ props.value }}
<SupplierDescriptorProxy
:id="props.row?.supplier?.id"