#37 open for testing
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 16s
Build and Push Docker Images / build-frontend (push) Successful in 6m17s

This commit is contained in:
2026-01-08 22:54:55 +01:00
parent b95d539907
commit 67d2a05ac4

View File

@@ -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(() => {
<td>Gesamt exkl. Steuer: </td>
<td class="text-right">{{totalCalculated.totalNet.toFixed(2).replace(".",",")}} €</td>
</tr>
<tr>
<td>7% Steuer: </td>
<td class="text-right">{{totalCalculated.totalAmount7Tax.toFixed(2).replace(".",",")}} €</td>
</tr>
<tr>
<td>19% Steuer: </td>
<td class="text-right">{{totalCalculated.totalAmount19Tax.toFixed(2).replace(".",",")}} €</td>