From de7251e16d84be2529cb2b0d2164c8611dc421f7 Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 13 Aug 2024 11:18:07 +0200 Subject: [PATCH 1/2] fix: InvoiceOut List and negative bases --- src/pages/InvoiceOut/InvoiceOutList.vue | 112 +++++++++++------- .../InvoiceOut/InvoiceOutNegativeBases.vue | 3 + 2 files changed, 75 insertions(+), 40 deletions(-) diff --git a/src/pages/InvoiceOut/InvoiceOutList.vue b/src/pages/InvoiceOut/InvoiceOutList.vue index 7e4622560..57466ec9c 100644 --- a/src/pages/InvoiceOut/InvoiceOutList.vue +++ b/src/pages/InvoiceOut/InvoiceOutList.vue @@ -222,50 +222,82 @@ watchEffect(selectedRows); + en: searchInvoice: Search issued invoice diff --git a/src/pages/InvoiceOut/InvoiceOutNegativeBases.vue b/src/pages/InvoiceOut/InvoiceOutNegativeBases.vue index 93b326c59..774b42478 100644 --- a/src/pages/InvoiceOut/InvoiceOutNegativeBases.vue +++ b/src/pages/InvoiceOut/InvoiceOutNegativeBases.vue @@ -74,6 +74,9 @@ const columns = computed(() => [ align: 'left', name: 'amount', label: t('invoiceOutModule.amount'), + columnFilter: { + type: 'number', + }, format: (row) => toCurrency(row.amount), cardVisible: true, }, From 07e4dca361e73486fb9cebaf4b5cf5ccf19cd5c6 Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 14 Aug 2024 08:55:18 +0200 Subject: [PATCH 2/2] refactor(invoiceOutList): create dialog --- src/pages/InvoiceOut/InvoiceOutList.vue | 116 +++++++++--------------- 1 file changed, 43 insertions(+), 73 deletions(-) diff --git a/src/pages/InvoiceOut/InvoiceOutList.vue b/src/pages/InvoiceOut/InvoiceOutList.vue index 5d3d51225..822f6bb33 100644 --- a/src/pages/InvoiceOut/InvoiceOutList.vue +++ b/src/pages/InvoiceOut/InvoiceOutList.vue @@ -1,5 +1,5 @@