From b0ace924d4bfc8484dd7c1cd686b6b4367e4e9cf Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Sat, 10 Jan 2026 17:25:12 +0100 Subject: [PATCH] Fix Total Amount #37 --- frontend/pages/incomingInvoices/[mode]/[id].vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/pages/incomingInvoices/[mode]/[id].vue b/frontend/pages/incomingInvoices/[mode]/[id].vue index 3de06e0..6f84da5 100644 --- a/frontend/pages/incomingInvoices/[mode]/[id].vue +++ b/frontend/pages/incomingInvoices/[mode]/[id].vue @@ -122,7 +122,7 @@ const totalCalculated = computed(() => { } }) - totalGross = Number(totalNet + totalAmount19Tax) + totalGross = Number(totalNet + totalAmount19Tax + totalAmount7Tax) return { totalNet,