From acdbc638e08b351027e8181593ed0ad85c4f4354 Mon Sep 17 00:00:00 2001 From: jtubau Date: Fri, 27 Dec 2024 14:19:35 +0100 Subject: [PATCH] refactor: refs #8316 used VnSection and VnCardBeta --- src/i18n/locale/en.yml | 2 + src/i18n/locale/es.yml | 2 + src/pages/Shelving/Card/ShelvingCard.vue | 15 +-- src/pages/Shelving/ShelvingList.vue | 113 ++++++++++++----------- src/router/modules/shelving.js | 107 +++++++++++---------- 5 files changed, 129 insertions(+), 110 deletions(-) diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml index 4a78811e6..c5c54849b 100644 --- a/src/i18n/locale/en.yml +++ b/src/i18n/locale/en.yml @@ -550,6 +550,8 @@ shelving: newShelving: New Shelving summary: recyclable: Recyclable + search: Search shelving + searchInfo: You can search by shelving reference parking: pickingOrder: Picking order sector: Sector diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml index 2bfe7ec4b..55b512514 100644 --- a/src/i18n/locale/es.yml +++ b/src/i18n/locale/es.yml @@ -575,6 +575,8 @@ shelving: newShelving: Nuevo Carro summary: recyclable: Reciclable + search: Buscar carro + searchInfo: Puedes buscar por referencia del carro parking: pickingOrder: Orden de recogida row: Fila diff --git a/src/pages/Shelving/Card/ShelvingCard.vue b/src/pages/Shelving/Card/ShelvingCard.vue index a501a7a99..41a0db33c 100644 --- a/src/pages/Shelving/Card/ShelvingCard.vue +++ b/src/pages/Shelving/Card/ShelvingCard.vue @@ -1,19 +1,12 @@ + diff --git a/src/pages/Shelving/ShelvingList.vue b/src/pages/Shelving/ShelvingList.vue index cd7c4bcf9..511db25d9 100644 --- a/src/pages/Shelving/ShelvingList.vue +++ b/src/pages/Shelving/ShelvingList.vue @@ -6,13 +6,14 @@ import VnLv from 'components/ui/VnLv.vue'; import { useRouter } from 'vue-router'; import ShelvingFilter from 'pages/Shelving/Card/ShelvingFilter.vue'; import ShelvingSummary from 'pages/Shelving/Card/ShelvingSummary.vue'; -import ShelvingSearchbar from 'pages/Shelving/Card/ShelvingSearchbar.vue'; 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 { t } = useI18n(); const { viewSummary } = useSummaryDialog(); +const dataKey = 'ShelvingList'; + const filter = { include: [{ relation: 'parking' }], }; @@ -34,58 +35,66 @@ function exprBuilder(param, value) {