From ea13528447272a1d79ccd348253a551e84e5720b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20B=C3=BCren?= Date: Wed, 16 Feb 2022 12:05:22 +0100 Subject: [PATCH] Anzahlungsrechnung nur netto erlauben MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Der Bug tritt später aus, bei Kontoauszug verbuchen calculate_prices_and_taxes setzt das Nebenbuch dann neu, als ob es eine Netto-Rechnung ist. --- bin/mozilla/is.pl | 2 ++ locale/de/all | 1 + 2 files changed, 3 insertions(+) diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index f0246220d..47a3e5d67 100644 --- a/bin/mozilla/is.pl +++ b/bin/mozilla/is.pl @@ -1048,6 +1048,8 @@ sub post { my @current_taxaccounts = (split(/ /, $form->{taxaccounts})); $form->error($locale->text('Cannot post invoice for advance payment with more than one tax')) if (scalar @current_taxaccounts > 1); + $form->error($locale->text('Cannot post invoice for advance payment with taxincluded')) + if ($form->{taxincluded}); } for my $i (1 .. $form->{paidaccounts}) { diff --git a/locale/de/all b/locale/de/all index 09f4476b2..1edac184d 100755 --- a/locale/de/all +++ b/locale/de/all @@ -591,6 +591,7 @@ $self->{texts} = { 'Cannot post invoice and/or transfer out! Error message:' => 'Rechnung kann nicht gebucht oder es kann nicht ausgelagert werden. Fehlermeldung:', 'Cannot post invoice for a closed period!' => 'Das Rechnungsdatum fällt in einen abgeschlossen Zeitraum!', 'Cannot post invoice for advance payment with more than one tax' => 'Anzahlungsrechnung mit mehr als einem Steuersatz kann nicht gebucht werden', + 'Cannot post invoice for advance payment with taxincluded' => 'Eine Anzahlungsrechnung mit Steuer im Preis inbegriffen kann nicht gebucht werden', 'Cannot post invoice!' => 'Rechnung kann nicht gebucht werden!', 'Cannot post payment for a closed period!' => 'Es können keine Zahlungen für abgeschlossene Bücher gebucht werden!', 'Cannot post payment!' => 'Zahlung kann nicht gebucht werden!', -- 2.20.1