From 2afaa48c25062c4ec728677b7ae1f0aee6290c47 Mon Sep 17 00:00:00 2001 From: carlossa Date: Tue, 3 Dec 2024 10:25:33 +0100 Subject: [PATCH] fix: fix invoiceOut filter --- src/pages/InvoiceOut/InvoiceOutList.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pages/InvoiceOut/InvoiceOutList.vue b/src/pages/InvoiceOut/InvoiceOutList.vue index f5a4f7d80..389807344 100644 --- a/src/pages/InvoiceOut/InvoiceOutList.vue +++ b/src/pages/InvoiceOut/InvoiceOutList.vue @@ -37,7 +37,7 @@ const columns = computed(() => [ }, isId: true, columnFilter: { - name: 'search', + name: 'id', }, }, { @@ -74,7 +74,9 @@ const columns = computed(() => [ component: 'select', attrs: { url: 'Clients', - fields: ['id', 'name'], + fields: ['id', 'socialName'], + optionLabel: 'socialName', + optionValue: 'id', }, columnField: { component: null,