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" @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"

View File

@ -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"