Added Steuertyp Error

This commit is contained in:
2025-07-31 20:20:17 +02:00
parent a4d68cafd8
commit 8989975be1

View File

@@ -158,6 +158,7 @@ const findIncomingInvoiceErrors = computed(() => {
if(account.amountNet === null) errors.push({message: "Es ist kein Nettobetrag angegeben", type: "breaking"})
if(account.taxType === null) errors.push({message: "Es ist kein Steuertyp ausgewählt", type: "breaking"})
if(account.costCentre === null) errors.push({message: "Es ist keine Kostenstelle ausgewählt", type: "info"})
if(account.taxType === null || account.taxType === "0") errors.push({message: "Es ist keine Steuerart ausgewählt", type: "breaking"})
})