refactor: refs #8316 used VnSection and VnCardBeta #1151

Closed
jtubau wants to merge 5 commits from 8316-shelvingCardWithVnCardBeta into dev
5 changed files with 127 additions and 110 deletions

View File

@ -570,6 +570,8 @@ shelving:
newShelving: New Shelving newShelving: New Shelving
summary: summary:
recyclable: Recyclable recyclable: Recyclable
search: Search shelving
searchInfo: You can search by shelving reference
parking: parking:
pickingOrder: Picking order pickingOrder: Picking order
sector: Sector sector: Sector

View File

@ -593,6 +593,8 @@ shelving:
newShelving: Nuevo Carro newShelving: Nuevo Carro
summary: summary:
recyclable: Reciclable recyclable: Reciclable
search: Buscar carro
searchInfo: Puedes buscar por referencia del carro
parking: parking:
pickingOrder: Orden de recogida pickingOrder: Orden de recogida
row: Fila row: Fila

View File

@ -1,19 +1,12 @@
<script setup> <script setup>
import VnCard from 'components/common/VnCard.vue'; import VnCardBeta from 'components/common/VnCardBeta.vue';
import ShelvingDescriptor from 'pages/Shelving/Card/ShelvingDescriptor.vue'; import ShelvingDescriptor from 'pages/Shelving/Card/ShelvingDescriptor.vue';
import ShelvingFilter from './ShelvingFilter.vue';
import ShelvingSearchbar from './ShelvingSearchbar.vue';
</script> </script>
<template> <template>
<VnCard <VnCardBeta
data-key="Shelving" data-key="Shelving"
base-url="Shelvings" base-url="Shelvings"
:descriptor="ShelvingDescriptor" :descriptor="ShelvingDescriptor"
:filter-panel="ShelvingFilter" />
search-data-key="ShelvingList"
>
<template #searchbar>
<ShelvingSearchbar />
</template>
</VnCard>
</template> </template>

View File

@ -6,13 +6,14 @@ import VnLv from 'components/ui/VnLv.vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import ShelvingFilter from 'pages/Shelving/Card/ShelvingFilter.vue'; import ShelvingFilter from 'pages/Shelving/Card/ShelvingFilter.vue';
import ShelvingSummary from 'pages/Shelving/Card/ShelvingSummary.vue'; import ShelvingSummary from 'pages/Shelving/Card/ShelvingSummary.vue';
import ShelvingSearchbar from 'pages/Shelving/Card/ShelvingSearchbar.vue';
import { useSummaryDialog } from 'src/composables/useSummaryDialog'; import { useSummaryDialog } from 'src/composables/useSummaryDialog';
import RightMenu from 'src/components/common/RightMenu.vue'; import VnSection from 'src/components/common/VnSection.vue';
const router = useRouter(); const router = useRouter();
const { t } = useI18n(); const { t } = useI18n();
const { viewSummary } = useSummaryDialog(); const { viewSummary } = useSummaryDialog();
const dataKey = 'ShelvingList';
const filter = { const filter = {
include: [{ relation: 'parking' }], include: [{ relation: 'parking' }],
}; };
@ -34,20 +35,24 @@ function exprBuilder(param, value) {
</script> </script>
<template> <template>
<ShelvingSearchbar /> <VnSection
<RightMenu> :data-key="dataKey"
<template #right-panel> prefix="shelving"
:array-data-props="{
url: 'Shelvings',
order: ['code'],
userFilter: filter,
exprBuilder,
}"
>
<template #rightMenu>
<ShelvingFilter data-key="ShelvingList" /> <ShelvingFilter data-key="ShelvingList" />
</template> </template>
</RightMenu> <template #body>
<QPage class="column items-center q-pa-md"> <QPage class="column items-center q-pa-md">
<div class="vn-card-list"> <div class="vn-card-list">
<VnPaginate <VnPaginate
data-key="ShelvingList" :data-key="dataKey"
jtubau marked this conversation as resolved
Review

El filter debe ir en array-data-props

El filter debe ir en array-data-props
url="Shelvings"
:filter="filter"
:expr-builder="exprBuilder"
:limit="20"
> >
jtubau marked this conversation as resolved Outdated
Outdated
Review

Quitar de aqui

Quitar de aqui
<template #body="{ rows }"> <template #body="{ rows }">
jtubau marked this conversation as resolved
Review

Borrar

Borrar
<CardList <CardList
@ -88,4 +93,6 @@ function exprBuilder(param, value) {
</RouterLink> </RouterLink>
</QPageSticky> </QPageSticky>
</QPage> </QPage>
</template>
</VnSection>
</template> </template>

View File

@ -1,34 +1,81 @@
import { RouterView } from 'vue-router'; import { RouterView } from 'vue-router';
const shelvingCard = {
name: 'ShelvingCard',
path: ':id',
component: () => import('src/pages/Shelving/Card/ShelvingCard.vue'),
redirect: { name: 'ShelvingSummary' },
meta: {
menu: [
'ShelvingBasicData',
'ShelvingLog',
],
},
children: [
{
path: 'summary',
name: 'ShelvingSummary',
meta: {
title: 'summary',
icon: 'launch',
},
component: () => import('src/pages/Shelving/Card/ShelvingSummary.vue'),
},
{
path: 'basic-data',
name: 'ShelvingBasicData',
meta: {
title: 'basicData',
icon: 'vn:settings',
},
component: () => import('src/pages/Shelving/Card/ShelvingForm.vue'),
},
{
path: 'log',
name: 'ShelvingLog',
meta: {
title: 'log',
icon: 'history',
},
component: () => import('src/pages/Shelving/Card/ShelvingLog.vue'),
},
],
};
export default { export default {
path: '/shelving',
name: 'Shelving', name: 'Shelving',
path: '/shelving',
meta: { meta: {
title: 'shelving', title: 'shelving',
icon: 'vn:inventory', icon: 'vn:inventory',
moduleName: 'Shelving', moduleName: 'Shelving',
menu: ['ShelvingList', 'ParkingList'],
}, },
component: RouterView, component: RouterView,
redirect: { name: 'ShelvingMain' }, redirect: { name: 'ShelvingMain' },
menus: { children: [
main: ['ShelvingList', 'ParkingList'], {
card: ['ShelvingBasicData', 'ShelvingLog'], name: 'ShelvingMain',
}, path: '',
component: () => import('src/components/common/VnModule.vue'),
redirect: { name: 'ShelvingIndexMain' },
children: [ children: [
{ {
path: '', path: '',
name: 'ShelvingMain', name: 'ShelvingIndexMain',
component: () => import('src/components/common/VnModule.vue'),
redirect: { name: 'ShelvingList' }, redirect: { name: 'ShelvingList' },
component: () => import('src/pages/Shelving/ShelvingList.vue'),
children: [ children: [
{ {
path: 'list',
name: 'ShelvingList', name: 'ShelvingList',
path: 'list',
meta: { meta: {
title: 'list', title: 'list',
icon: 'view_list', icon: 'view_list',
}, },
component: () => import('src/pages/Shelving/ShelvingList.vue'), },
shelvingCard,
],
}, },
{ {
path: 'create', path: 'create',
@ -56,39 +103,5 @@ export default {
}, },
], ],
}, },
{
name: 'ShelvingLayout',
path: ':id',
component: () => import('pages/Shelving/Card/ShelvingCard.vue'),
redirect: { name: 'ShelvingSummary' },
children: [
{
name: 'ShelvingSummary',
path: 'summary',
meta: {
title: 'summary',
},
component: () => import('pages/Shelving/Card/ShelvingSummary.vue'),
},
{
name: 'ShelvingBasicData',
path: 'basic-data',
meta: {
title: 'basicData',
icon: 'vn:settings',
},
component: () => import('pages/Shelving/Card/ShelvingForm.vue'),
},
{
name: 'ShelvingLog',
path: 'log',
meta: {
title: 'log',
icon: 'history',
},
component: () => import('src/pages/Shelving/Card/ShelvingLog.vue'),
},
],
},
], ],
}; };