diff --git a/frontend/pages/incomingInvoices/[mode]/[id].vue b/frontend/pages/incomingInvoices/[mode]/[id].vue index 431cf23..3de06e0 100644 --- a/frontend/pages/incomingInvoices/[mode]/[id].vue +++ b/frontend/pages/incomingInvoices/[mode]/[id].vue @@ -117,6 +117,8 @@ const totalCalculated = computed(() => { if(account.taxType === "19" && account.amountTax) { totalAmount19Tax += account.amountTax + } else if(account.taxType === "7" && account.amountTax) { + totalAmount7Tax += account.amountTax } }) @@ -125,6 +127,7 @@ const totalCalculated = computed(() => { return { totalNet, totalAmount19Tax, + totalAmount7Tax, totalGross } @@ -392,6 +395,10 @@ const findIncomingInvoiceErrors = computed(() => { Gesamt exkl. Steuer: {{totalCalculated.totalNet.toFixed(2).replace(".",",")}} € + + 7% Steuer: + {{totalCalculated.totalAmount7Tax.toFixed(2).replace(".",",")}} € + 19% Steuer: {{totalCalculated.totalAmount19Tax.toFixed(2).replace(".",",")}} €