diff --git a/pages/incomingInvoices/edit/[id].vue b/pages/incomingInvoices/edit/[id].vue index 0435cd0..28e4e83 100644 --- a/pages/incomingInvoices/edit/[id].vue +++ b/pages/incomingInvoices/edit/[id].vue @@ -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"}) })