From 5d91b03f9ae0488ee159d1b0119a9462ab785758 Mon Sep 17 00:00:00 2001 From: jorgep Date: Fri, 6 Sep 2024 09:27:55 +0200 Subject: [PATCH] fix: dynamic fetch --- src/pages/Entry/Card/EntryBuys.vue | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/pages/Entry/Card/EntryBuys.vue b/src/pages/Entry/Card/EntryBuys.vue index 6e66f4ce7..903b691b0 100644 --- a/src/pages/Entry/Card/EntryBuys.vue +++ b/src/pages/Entry/Card/EntryBuys.vue @@ -26,7 +26,6 @@ const { notify } = useNotify(); const rowsSelected = ref([]); const entryBuysPaginateRef = ref(null); -const packagingsOptions = ref(null); const originalRowDataCopy = ref(null); const getInputEvents = (colField, props) => { @@ -66,7 +65,10 @@ const tableColumnComponents = computed(() => ({ 'map-options': true, 'use-input': true, 'hide-selected': true, - options: packagingsOptions.value, + url: 'Packagings', + fields: ['id'], + where: { freightItemFk: true }, + 'sort-by': 'id ASC', dense: true, }, event: getInputEvents, @@ -304,13 +306,6 @@ const lockIconType = (groupingMode, mode) => {