Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 8581-invoiceinE2e
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Jorge Penadés 2025-03-12 09:15:21 +01:00
commit b86ba0c67b
31 changed files with 111 additions and 87 deletions

View File

@ -188,7 +188,7 @@ const selectItem = ({ id }) => {
> >
<template #body-cell-id="{ row }"> <template #body-cell-id="{ row }">
<QTd auto-width @click.stop> <QTd auto-width @click.stop>
<QBtn flat color="blue">{{ row.id }}</QBtn> <QBtn flat class="link">{{ row.id }}</QBtn>
<ItemDescriptorProxy :id="row.id" /> <ItemDescriptorProxy :id="row.id" />
</QTd> </QTd>
</template> </template>

View File

@ -196,7 +196,7 @@ const selectTravel = ({ id }) => {
> >
<template #body-cell-id="{ row }"> <template #body-cell-id="{ row }">
<QTd auto-width @click.stop data-cy="travelFk-travel-form"> <QTd auto-width @click.stop data-cy="travelFk-travel-form">
<QBtn flat color="blue">{{ row.id }}</QBtn> <QBtn flat class="link">{{ row.id }}</QBtn>
<TravelDescriptorProxy :id="row.id" /> <TravelDescriptorProxy :id="row.id" />
</QTd> </QTd>
</template> </template>

View File

@ -6,6 +6,7 @@ import VnSelect from 'components/common/VnSelect.vue';
import VnInput from 'components/common/VnInput.vue'; import VnInput from 'components/common/VnInput.vue';
import VnInputDate from 'components/common/VnInputDate.vue'; import VnInputDate from 'components/common/VnInputDate.vue';
import VnInputTime from 'components/common/VnInputTime.vue'; import VnInputTime from 'components/common/VnInputTime.vue';
import VnCheckbox from 'components/common/VnCheckbox.vue';
import VnColumn from 'components/VnTable/VnColumn.vue'; import VnColumn from 'components/VnTable/VnColumn.vue';
const $props = defineProps({ const $props = defineProps({
@ -106,7 +107,7 @@ const components = {
}, },
}, },
checkbox: { checkbox: {
component: markRaw(QCheckbox), component: markRaw(VnCheckbox),
event: updateEvent, event: updateEvent,
attrs: { attrs: {
class: $props.showTitle ? 'q-py-sm' : 'q-px-md q-py-xs fit', class: $props.showTitle ? 'q-py-sm' : 'q-px-md q-py-xs fit',

View File

@ -54,7 +54,7 @@ const $props = defineProps({
default: 'table', default: 'table',
}, },
redirect: { redirect: {
type: Boolean, type: [String, Boolean],
default: true, default: true,
}, },
arrayData: { arrayData: {

View File

@ -15,6 +15,7 @@ body.body--light {
--vn-empty-tag: #acacac; --vn-empty-tag: #acacac;
--vn-black-text-color: black; --vn-black-text-color: black;
--vn-text-color-contrast: white; --vn-text-color-contrast: white;
--vn-link-color: #1e90ff;
background-color: var(--vn-page-color); background-color: var(--vn-page-color);
@ -38,6 +39,7 @@ body.body--dark {
--vn-empty-tag: #2d2d2d; --vn-empty-tag: #2d2d2d;
--vn-black-text-color: black; --vn-black-text-color: black;
--vn-text-color-contrast: black; --vn-text-color-contrast: black;
--vn-link-color: #66bfff;
background-color: var(--vn-page-color); background-color: var(--vn-page-color);
@ -49,7 +51,7 @@ a {
} }
.link { .link {
color: $color-link; color: var(--vn-link-color);
cursor: pointer; cursor: pointer;
&--white { &--white {
@ -58,14 +60,14 @@ a {
} }
.tx-color-link { .tx-color-link {
color: $color-link !important; color: var(--vn-link-color) !important;
} }
.tx-color-font { .tx-color-font {
color: $color-link !important; color: var(--vn-link-color) !important;
} }
.header-link { .header-link {
color: $color-link !important; color: var(--vn-link-color) !important;
cursor: pointer; cursor: pointer;
border-bottom: solid $primary; border-bottom: solid $primary;
border-width: 2px; border-width: 2px;

View File

@ -24,7 +24,6 @@ $alert: $negative;
$white: #fff; $white: #fff;
$dark: #3d3d3d; $dark: #3d3d3d;
// custom // custom
$color-link: #66bfff;
$color-spacer-light: #a3a3a31f; $color-spacer-light: #a3a3a31f;
$color-spacer: #7979794d; $color-spacer: #7979794d;
$border-thin-light: 1px solid $color-spacer-light; $border-thin-light: 1px solid $color-spacer-light;

View File

@ -5,6 +5,7 @@ import { useI18n } from 'vue-i18n';
import CardSummary from 'components/ui/CardSummary.vue'; import CardSummary from 'components/ui/CardSummary.vue';
import VnLv from 'src/components/ui/VnLv.vue'; import VnLv from 'src/components/ui/VnLv.vue';
import VnTitle from 'src/components/common/VnTitle.vue';
const route = useRoute(); const route = useRoute();
const { t } = useI18n(); const { t } = useI18n();
@ -27,13 +28,10 @@ const entityId = computed(() => $props.id || route.params.id);
<template #body="{ entity: alias }"> <template #body="{ entity: alias }">
<QCard class="vn-one"> <QCard class="vn-one">
<QCardSection class="q-pa-none"> <QCardSection class="q-pa-none">
<router-link <VnTitle
:to="{ name: 'AliasBasicData', params: { id: entityId } }" :url="`#/account/alias/${entityId}/basic-data`"
class="header header-link" :text="t('globals.summary.basicData')"
> />
{{ t('globals.summary.basicData') }}
<QIcon name="open_in_new" />
</router-link>
</QCardSection> </QCardSection>
<VnLv :label="t('role.id')" :value="alias.id" /> <VnLv :label="t('role.id')" :value="alias.id" />
<VnLv :label="t('role.description')" :value="alias.description" /> <VnLv :label="t('role.description')" :value="alias.description" />

View File

@ -5,6 +5,7 @@ import CardSummary from 'components/ui/CardSummary.vue';
import VnLv from 'src/components/ui/VnLv.vue'; import VnLv from 'src/components/ui/VnLv.vue';
import filter from './AccountFilter.js'; import filter from './AccountFilter.js';
import AccountDescriptorMenu from './AccountDescriptorMenu.vue'; import AccountDescriptorMenu from './AccountDescriptorMenu.vue';
import VnTitle from 'src/components/common/VnTitle.vue';
const $props = defineProps({ id: { type: Number, default: 0 } }); const $props = defineProps({ id: { type: Number, default: 0 } });
@ -26,13 +27,10 @@ const entityId = computed(() => $props.id || route.params.id);
<template #body="{ entity }"> <template #body="{ entity }">
<QCard class="vn-one"> <QCard class="vn-one">
<QCardSection class="q-pa-none"> <QCardSection class="q-pa-none">
<router-link <VnTitle
:to="{ name: 'AccountBasicData', params: { id: entityId } }" :url="`#/account/${entityId}/basic-data`"
class="header header-link" :text="$t('globals.pageTitles.basicData')"
> />
{{ $t('globals.pageTitles.basicData') }}
<QIcon name="open_in_new" />
</router-link>
</QCardSection> </QCardSection>
<VnLv :label="$t('account.card.nickname')" :value="entity.name" /> <VnLv :label="$t('account.card.nickname')" :value="entity.name" />
<VnLv :label="$t('account.card.role')" :value="entity.role?.name" /> <VnLv :label="$t('account.card.role')" :value="entity.role?.name" />

View File

@ -4,6 +4,7 @@ import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import CardSummary from 'components/ui/CardSummary.vue'; import CardSummary from 'components/ui/CardSummary.vue';
import VnLv from 'src/components/ui/VnLv.vue'; import VnLv from 'src/components/ui/VnLv.vue';
import VnTitle from 'src/components/common/VnTitle.vue';
const route = useRoute(); const route = useRoute();
const { t } = useI18n(); const { t } = useI18n();
@ -29,13 +30,10 @@ const entityId = computed(() => $props.id || route.params.id);
<template #body="{ entity }"> <template #body="{ entity }">
<QCard class="vn-one"> <QCard class="vn-one">
<QCardSection class="q-pa-none"> <QCardSection class="q-pa-none">
<a <VnTitle
class="header header-link" :url="`#/account/role/${entityId}/basic-data`"
:href="`#/VnUser/${entityId}/basic-data`" :text="$t('globals.pageTitles.basicData')"
> />
{{ t('globals.pageTitles.basicData') }}
<QIcon name="open_in_new" />
</a>
</QCardSection> </QCardSection>
<VnLv :label="t('role.id')" :value="entity.id" /> <VnLv :label="t('role.id')" :value="entity.id" />
<VnLv :label="t('globals.name')" :value="entity.name" /> <VnLv :label="t('globals.name')" :value="entity.name" />

View File

@ -271,7 +271,7 @@ function claimUrl(section) {
</VnLv> </VnLv>
<VnLv v-if="$route.name != 'ClaimSummary'" :label="t('claim.customer')"> <VnLv v-if="$route.name != 'ClaimSummary'" :label="t('claim.customer')">
<template #value> <template #value>
<span class="link cursor-pointer"> <span class="link">
{{ claim.client?.name }} {{ claim.client?.name }}
<CustomerDescriptorProxy :id="claim.clientFk" /> <CustomerDescriptorProxy :id="claim.clientFk" />
</span> </span>

View File

@ -86,12 +86,12 @@ const tableColumnComponents = {
}, },
file: { file: {
component: QBtn, component: QBtn,
props: () => ({ flat: true, color: 'blue' }), props: () => ({ flat: true }),
event: ({ row }) => downloadFile(row.dmsFk), event: ({ row }) => downloadFile(row.dmsFk),
}, },
employee: { employee: {
component: QBtn, component: QBtn,
props: () => ({ flat: true, color: 'blue' }), props: () => ({ flat: true }),
event: () => {}, event: () => {},
}, },
created: { created: {
@ -214,8 +214,17 @@ const toCustomerFileManagementCreate = () => {
v-bind="tableColumnComponents[props.col.name].props(props)" v-bind="tableColumnComponents[props.col.name].props(props)"
> >
<template v-if="props.col.name !== 'original'"> <template v-if="props.col.name !== 'original'">
{{ props.value }} <span
:class="{
link:
props.col.name === 'employee' ||
props.col.name === 'file',
}"
>
{{ props.value }}
</span>
</template> </template>
<WorkerDescriptorProxy <WorkerDescriptorProxy
:id="props.row.dms.workerFk" :id="props.row.dms.workerFk"
v-if="props.col.name === 'employee'" v-if="props.col.name === 'employee'"

View File

@ -7,6 +7,7 @@ import filter from './ItemTypeFilter.js';
import CardSummary from 'components/ui/CardSummary.vue'; import CardSummary from 'components/ui/CardSummary.vue';
import VnLv from 'src/components/ui/VnLv.vue'; import VnLv from 'src/components/ui/VnLv.vue';
import VnToSummary from 'src/components/ui/VnToSummary.vue'; import VnToSummary from 'src/components/ui/VnToSummary.vue';
import VnTitle from 'src/components/common/VnTitle.vue';
onUpdated(() => summaryRef.value.fetch()); onUpdated(() => summaryRef.value.fetch());
@ -62,13 +63,10 @@ async function setItemTypeData(data) {
</template> </template>
<template #body> <template #body>
<QCard class="vn-one"> <QCard class="vn-one">
<router-link <VnTitle
:to="{ name: 'ItemTypeBasicData', params: { id: entityId } }" :url="`#/item/item-type/${entityId}/basic-data`"
class="header header-link" :text="$t('globals.summary.basicData')"
> />
{{ t('globals.summary.basicData') }}
<QIcon name="open_in_new" />
</router-link>
<VnLv :label="t('itemType.summary.id')" :value="itemType.id" /> <VnLv :label="t('itemType.summary.id')" :value="itemType.id" />
<VnLv :label="t('itemType.shared.code')" :value="itemType.code" /> <VnLv :label="t('itemType.shared.code')" :value="itemType.code" />
<VnLv :label="t('itemType.shared.name')" :value="itemType.name" /> <VnLv :label="t('itemType.shared.name')" :value="itemType.name" />

View File

@ -2,10 +2,13 @@
import { computed } from 'vue'; import { computed } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useSummaryDialog } from 'src/composables/useSummaryDialog';
import VnTable from 'components/VnTable/VnTable.vue'; import VnTable from 'components/VnTable/VnTable.vue';
import VnSection from 'src/components/common/VnSection.vue'; import VnSection from 'src/components/common/VnSection.vue';
import AgencySummary from 'pages/Route/Agency/Card/AgencySummary.vue';
const { t } = useI18n(); const { t } = useI18n();
const { viewSummary } = useSummaryDialog();
const router = useRouter(); const router = useRouter();
const dataKey = 'AgencyList'; const dataKey = 'AgencyList';
function navigate(id) { function navigate(id) {
@ -60,7 +63,8 @@ const columns = computed(() => [
{ {
title: t('Client ticket list'), title: t('Client ticket list'),
icon: 'preview', icon: 'preview',
action: (row) => navigate(row.id), action: (row) => viewSummary(row?.id, AgencySummary),
isPrimary: true,
}, },
], ],
}, },
@ -82,7 +86,7 @@ const columns = computed(() => [
<VnTable <VnTable
:data-key :data-key
:columns="columns" :columns="columns"
is-editable="false" :is-editable="false"
:right-search="false" :right-search="false"
:use-model="true" :use-model="true"
redirect="route/agency" redirect="route/agency"

View File

@ -21,7 +21,7 @@ const warehouses = ref([]);
@on-fetch="(data) => (warehouses = data)" @on-fetch="(data) => (warehouses = data)"
auto-load auto-load
/> />
<FormModel :update-url="`Agencies/${routeId}`" model="Agency" auto-load> <FormModel :url-update="`Agencies/${routeId}`" model="Agency" auto-load>
<template #form="{ data }"> <template #form="{ data }">
<VnRow> <VnRow>
<VnInput v-model="data.name" :label="t('globals.name')" /> <VnInput v-model="data.name" :label="t('globals.name')" />

View File

@ -7,19 +7,20 @@ import CardSummary from 'components/ui/CardSummary.vue';
import VnLv from 'components/ui/VnLv.vue'; import VnLv from 'components/ui/VnLv.vue';
import VnTitle from 'src/components/common/VnTitle.vue'; import VnTitle from 'src/components/common/VnTitle.vue';
const route = useRoute();
const $props = defineProps({ id: { type: Number, default: 0 } }); const $props = defineProps({ id: { type: Number, default: 0 } });
const { t } = useI18n(); const { t } = useI18n();
const entityId = computed(() => $props.id || useRoute().params.id); const entityId = computed(() => $props.id || route.params.id);
</script> </script>
<template> <template>
<div class="q-pa-md"> <div class="q-pa-md">
<CardSummary :url="`Agencies/${entityId}`" data-key="Agency"> <CardSummary :url="`Agencies/${entityId}`" data-key="Agency" module-name="Agency">
<template #header="{ entity: agency }">{{ agency.name }}</template> <template #header="{ entity: agency }">{{ agency.name }}</template>
<template #body="{ entity: agency }"> <template #body="{ entity: agency }">
<QCard class="vn-one"> <QCard class="vn-one">
<VnTitle <VnTitle
:url="`#/agency/${entityId}/basic-data`" :url="`#/${route.meta.moduleName.toLowerCase()}/agency/${entityId}/basic-data`"
:text="t('globals.pageTitles.basicData')" :text="t('globals.pageTitles.basicData')"
/> />
<VnLv :label="t('globals.name')" :value="agency.name" /> <VnLv :label="t('globals.name')" :value="agency.name" />

View File

@ -135,7 +135,7 @@ const ticketColumns = ref([
<template #body="{ entity }"> <template #body="{ entity }">
<QCard class="vn-max"> <QCard class="vn-max">
<VnTitle <VnTitle
:url="`#/route/${entityId}/basic-data`" :url="`#/${route.meta.moduleName.toLowerCase()}/${entityId}/basic-data`"
:text="t('globals.pageTitles.basicData')" :text="t('globals.pageTitles.basicData')"
/> />
</QCard> </QCard>
@ -168,7 +168,7 @@ const ticketColumns = ref([
<VnLv <VnLv
:label="t('route.summary.volume')" :label="t('route.summary.volume')"
:value="`${dashIfEmpty(entity?.route?.m3)} / ${dashIfEmpty( :value="`${dashIfEmpty(entity?.route?.m3)} / ${dashIfEmpty(
entity?.route?.vehicle?.m3 entity?.route?.vehicle?.m3,
)} `" )} `"
/> />
<VnLv <VnLv
@ -221,7 +221,7 @@ const ticketColumns = ref([
<template #body-cell-city="{ value, row }"> <template #body-cell-city="{ value, row }">
<QTd auto-width> <QTd auto-width>
<span <span
class="link cursor-pointer" class="link"
@click="openBuscaman(entity?.route?.vehicleFk, [row])" @click="openBuscaman(entity?.route?.vehicleFk, [row])"
> >
{{ value }} {{ value }}
@ -230,7 +230,7 @@ const ticketColumns = ref([
</template> </template>
<template #body-cell-client="{ value, row }"> <template #body-cell-client="{ value, row }">
<QTd auto-width> <QTd auto-width>
<span class="link cursor-pointer"> <span class="link">
{{ value }} {{ value }}
<CustomerDescriptorProxy :id="row?.clientFk" /> <CustomerDescriptorProxy :id="row?.clientFk" />
</span> </span>
@ -238,7 +238,7 @@ const ticketColumns = ref([
</template> </template>
<template #body-cell-ticket="{ value, row }"> <template #body-cell-ticket="{ value, row }">
<QTd auto-width class="text-center"> <QTd auto-width class="text-center">
<span class="link cursor-pointer"> <span class="link">
{{ value }} {{ value }}
<TicketDescriptorProxy :id="row?.id" /> <TicketDescriptorProxy :id="row?.id" />
</span> </span>

View File

@ -17,7 +17,7 @@ const onSave = (data, response) => {
</script> </script>
<template> <template>
<FormModel <FormModel
:update-url="`Roadmaps/${$route.params?.id}`" :url-update="`Roadmaps/${$route.params?.id}`"
:url="`Roadmaps/${$route.params?.id}`" :url="`Roadmaps/${$route.params?.id}`"
observe-form-changes observe-form-changes
model="Roadmap" model="Roadmap"

View File

@ -15,6 +15,10 @@ const $props = defineProps({
required: false, required: false,
default: null, default: null,
}, },
summary: {
type: Object,
default: null,
},
}); });
const route = useRoute(); const route = useRoute();
@ -26,7 +30,12 @@ const entityId = computed(() => {
</script> </script>
<template> <template>
<CardDescriptor :url="`Roadmaps/${entityId}`" :filter="filter" data-key="Roadmap"> <CardDescriptor
:url="`Roadmaps/${entityId}`"
:filter="filter"
data-key="Roadmap"
:summary="summary"
>
<template #body="{ entity }"> <template #body="{ entity }">
<VnLv :label="t('Roadmap')" :value="entity?.name" /> <VnLv :label="t('Roadmap')" :value="entity?.name" />
<VnLv :label="t('ETD')" :value="toDateHourMin(entity?.etd)" /> <VnLv :label="t('ETD')" :value="toDateHourMin(entity?.etd)" />

View File

@ -98,7 +98,7 @@ const columns = computed(() => [
label: t('route.hourStarted'), label: t('route.hourStarted'),
cardVisible: true, cardVisible: true,
columnFilter: false, columnFilter: false,
format: (row) => toHour(row.started), format: ({ started }) => toHour(started),
}, },
{ {
align: 'left', align: 'left',
@ -106,7 +106,7 @@ const columns = computed(() => [
label: t('route.hourFinished'), label: t('route.hourFinished'),
cardVisible: true, cardVisible: true,
columnFilter: false, columnFilter: false,
format: (row) => toHour(row.started), format: ({ finished }) => toHour(finished),
}, },
{ {
align: 'left', align: 'left',

View File

@ -8,7 +8,6 @@ import { useSummaryDialog } from 'composables/useSummaryDialog';
import toCurrency from 'filters/toCurrency'; import toCurrency from 'filters/toCurrency';
import axios from 'axios'; import axios from 'axios';
import VnSearchbar from 'components/ui/VnSearchbar.vue';
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue'; import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
import VnTable from 'components/VnTable/VnTable.vue'; import VnTable from 'components/VnTable/VnTable.vue';
import RoadmapSummary from 'pages/Route/Roadmap/RoadmapSummary.vue'; import RoadmapSummary from 'pages/Route/Roadmap/RoadmapSummary.vue';

View File

@ -11,7 +11,6 @@ const { notify } = useNotify();
:url="`Vehicles/${$route.params.id}`" :url="`Vehicles/${$route.params.id}`"
data-key="Vehicle" data-key="Vehicle"
title="numberPlate" title="numberPlate"
:to-module="{ name: 'VehicleList' }"
> >
<template #menu="{ entity }"> <template #menu="{ entity }">
<QItem <QItem

View File

@ -13,12 +13,13 @@ const props = defineProps({ id: { type: [Number, String], default: null } });
const route = useRoute(); const route = useRoute();
const entityId = computed(() => props.id || +route.params.id); const entityId = computed(() => props.id || +route.params.id);
const baseLink = `#/${route.meta.moduleName.toLowerCase()}/vehicle/${entityId.value}`;
const links = { const links = {
'basic-data': `#/vehicle/${entityId.value}/basic-data`, 'basic-data': `${baseLink}/basic-data`,
notes: `#/vehicle/${entityId.value}/notes`, notes: `${baseLink}/notes`,
dms: `#/vehicle/${entityId.value}/dms`, dms: `${baseLink}/dms`,
'invoice-in': `#/vehicle/${entityId.value}/invoice-in`, 'invoice-in': `${baseLink}/invoice-in`,
events: `#/vehicle/${entityId.value}/events`, events: `${baseLink}/events`,
}; };
</script> </script>
<template> <template>
@ -54,7 +55,10 @@ const links = {
<template #value> <template #value>
<span class="link"> <span class="link">
{{ entity.supplier?.name }} {{ entity.supplier?.name }}
<SupplierDescriptorProxy :id="entity.supplierFk" /> <SupplierDescriptorProxy
v-if="entity.supplierFk"
:id="entity.supplierFk"
/>
</span> </span>
</template> </template>
</VnLv> </VnLv>
@ -63,6 +67,7 @@ const links = {
<span class="link"> <span class="link">
{{ entity.supplierCooler?.name }} {{ entity.supplierCooler?.name }}
<SupplierDescriptorProxy <SupplierDescriptorProxy
v-if="entity.supplierCoolerFk"
:id="entity.supplierCoolerFk" :id="entity.supplierCoolerFk"
/> />
</span> </span>

View File

@ -116,6 +116,7 @@ const columns = computed(() => [
title: t('components.smartCard.openSummary'), title: t('components.smartCard.openSummary'),
icon: 'preview', icon: 'preview',
action: (row) => viewSummary(row.id, VehicleSummary), action: (row) => viewSummary(row.id, VehicleSummary),
isPrimary: true,
}, },
], ],
}, },

View File

@ -6,6 +6,7 @@ import VnLv from 'components/ui/VnLv.vue';
import VnUserLink from 'components/ui/VnUserLink.vue'; import VnUserLink from 'components/ui/VnUserLink.vue';
import filter from './ShelvingFilter.js'; import filter from './ShelvingFilter.js';
import ShelvingDescriptorMenu from './ShelvingDescriptorMenu.vue'; import ShelvingDescriptorMenu from './ShelvingDescriptorMenu.vue';
import VnTitle from 'src/components/common/VnTitle.vue';
const $props = defineProps({ const $props = defineProps({
id: { id: {
@ -38,13 +39,10 @@ const entityId = computed(() => $props.id || route.params.id);
</template> </template>
<template #body="{ entity }"> <template #body="{ entity }">
<QCard class="vn-one"> <QCard class="vn-one">
<RouterLink <VnTitle
class="header header-link" :url="`#/shelving/${entityId}/basic-data`"
:to="{ name: 'ShelvingBasicData', params: { id: entityId } }" :text="$t('globals.pageTitles.basicData')"
> />
{{ $t('globals.pageTitles.basicData') }}
<QIcon name="open_in_new" />
</RouterLink>
<VnLv :label="$t('globals.code')" :value="entity.code" /> <VnLv :label="$t('globals.code')" :value="entity.code" />
<VnLv <VnLv
:label="$t('shelving.list.parking')" :label="$t('shelving.list.parking')"

View File

@ -4,6 +4,7 @@ import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import CardSummary from 'components/ui/CardSummary.vue'; import CardSummary from 'components/ui/CardSummary.vue';
import VnLv from 'components/ui/VnLv.vue'; import VnLv from 'components/ui/VnLv.vue';
import VnTitle from 'src/components/common/VnTitle.vue';
const $props = defineProps({ const $props = defineProps({
id: { id: {
@ -28,13 +29,10 @@ const filter = {
<template #body="{ entity }"> <template #body="{ entity }">
<QCard class="vn-one"> <QCard class="vn-one">
<QCardSection class="q-pa-none"> <QCardSection class="q-pa-none">
<a <VnTitle
class="header header-link" :url="`#/shelving/parking/${entityId}/basic-data`"
:href="`#/parking/${entityId}/basic-data`" :text="$t('globals.pageTitles.basicData')"
> />
{{ t('globals.pageTitles.basicData') }}
<QIcon name="open_in_new" />
</a>
</QCardSection> </QCardSection>
<VnLv :label="t('globals.code')" :value="entity.code" /> <VnLv :label="t('globals.code')" :value="entity.code" />
<VnLv <VnLv

View File

@ -203,7 +203,7 @@ onMounted(async () => {
</QTr> </QTr>
<QTr v-for="(buy, index) in row.buys" :key="index"> <QTr v-for="(buy, index) in row.buys" :key="index">
<QTd no-hover> <QTd no-hover>
<QBtn flat color="blue" dense no-caps>{{ buy.itemName }}</QBtn> <QBtn flat class="link" dense no-caps>{{ buy.itemName }}</QBtn>
<ItemDescriptorProxy :id="buy.itemFk" /> <ItemDescriptorProxy :id="buy.itemFk" />
</QTd> </QTd>

View File

@ -225,7 +225,7 @@ function onBuysFetched(data) {
/> />
</div> </div>
<div class="flex column left" style="align-items: flex-start"> <div class="flex column left" style="align-items: flex-start">
<QBtn flat class="link text-blue"> <QBtn flat class="link">
{{ item?.longName ?? item.name }} {{ item?.longName ?? item.name }}
<ItemDescriptorProxy :id="entityId" /> <ItemDescriptorProxy :id="entityId" />
<FetchedTags class="q-ml-md" :item="item" :columns="7" /> <FetchedTags class="q-ml-md" :item="item" :columns="7" />

View File

@ -23,6 +23,10 @@ const $props = defineProps({
required: false, required: false,
default: 'Worker', default: 'Worker',
}, },
summary: {
type: Object,
default: null,
},
}); });
const image = ref(null); const image = ref(null);
@ -51,6 +55,7 @@ const handlePhotoUpdated = (evt = false) => {
<CardDescriptor <CardDescriptor
ref="cardDescriptorRef" ref="cardDescriptorRef"
:data-key="dataKey" :data-key="dataKey"
:summary="$props.summary"
url="Workers/summary" url="Workers/summary"
:filter="{ where: { id: entityId } }" :filter="{ where: { id: entityId } }"
title="user.nickname" title="user.nickname"

View File

@ -220,7 +220,6 @@ export default {
path: '', path: '',
name: 'RouteIndexMain', name: 'RouteIndexMain',
redirect: { name: 'RouteList' }, redirect: { name: 'RouteList' },
component: () => import('src/pages/Route/RouteList.vue'),
children: [ children: [
{ {
name: 'RouteList', name: 'RouteList',
@ -229,6 +228,7 @@ export default {
title: 'list', title: 'list',
icon: 'view_list', icon: 'view_list',
}, },
component: () => import('src/pages/Route/RouteList.vue'),
}, },
routeCard, routeCard,
], ],
@ -268,7 +268,6 @@ export default {
title: 'RouteRoadmap', title: 'RouteRoadmap',
icon: 'vn:troncales', icon: 'vn:troncales',
}, },
component: () => import('src/pages/Route/RouteRoadmap.vue'),
children: [ children: [
{ {
name: 'RoadmapList', name: 'RoadmapList',
@ -277,6 +276,7 @@ export default {
title: 'list', title: 'list',
icon: 'view_list', icon: 'view_list',
}, },
component: () => import('src/pages/Route/RouteRoadmap.vue'),
}, },
roadmapCard, roadmapCard,
], ],
@ -298,7 +298,6 @@ export default {
title: 'agency', title: 'agency',
icon: 'garage_home', icon: 'garage_home',
}, },
component: () => import('src/pages/Route/Agency/AgencyList.vue'),
children: [ children: [
{ {
name: 'AgencyList', name: 'AgencyList',
@ -307,6 +306,8 @@ export default {
title: 'list', title: 'list',
icon: 'view_list', icon: 'view_list',
}, },
component: () =>
import('src/pages/Route/Agency/AgencyList.vue'),
}, },
agencyCard, agencyCard,
], ],
@ -319,7 +320,6 @@ export default {
title: 'vehicle', title: 'vehicle',
icon: 'directions_car', icon: 'directions_car',
}, },
component: () => import('src/pages/Route/Vehicle/VehicleList.vue'),
children: [ children: [
{ {
path: 'list', path: 'list',
@ -328,6 +328,8 @@ export default {
title: 'vehicleList', title: 'vehicleList',
icon: 'directions_car', icon: 'directions_car',
}, },
component: () =>
import('src/pages/Route/Vehicle/VehicleList.vue'),
}, },
vehicleCard, vehicleCard,
], ],

View File

@ -2,7 +2,7 @@
describe('ParkingList', () => { describe('ParkingList', () => {
const searchbar = '#searchbar input'; const searchbar = '#searchbar input';
const firstCard = ':nth-child(1) > .q-card > .no-margin > .q-py-none'; const firstCard = ':nth-child(1) > .q-card > .no-margin > .q-py-none';
const summaryHeader = '.summaryBody .header'; const summaryHeader = '.header-link';
beforeEach(() => { beforeEach(() => {
cy.viewport(1920, 1080); cy.viewport(1920, 1080);

View File

@ -16,8 +16,8 @@ describe('ShelvingList', () => {
it('should redirect from preview to basic-data', () => { it('should redirect from preview to basic-data', () => {
cy.typeSearchbar('{enter}'); cy.typeSearchbar('{enter}');
cy.dataCy('cardBtn').eq(0).click(); cy.dataCy('cardBtn').eq(0).click();
cy.get('.q-card > .header').click(); cy.get('.summaryHeader > .header > .q-icon').click();
cy.url().should('include', '/shelving/1/basic-data'); cy.url().should('include', '/shelving/1/summary');
}); });
it('should filter and redirect if only one result', () => { it('should filter and redirect if only one result', () => {