From: Thomas Kasulke Date: Mon, 14 May 2007 10:17:49 +0000 (+0000) Subject: Überprüfung auf Nullbuchung und Übersetzungen X-Git-Tag: release-2.4.3^2~326 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=937a49378b241374fb29a7d52426507171dfbc2e;p=kivitendo-erp.git Überprüfung auf Nullbuchung und Übersetzungen --- diff --git a/bin/mozilla/cp.pl b/bin/mozilla/cp.pl index c7e9a9b3d..f91e9e00c 100644 --- a/bin/mozilla/cp.pl +++ b/bin/mozilla/cp.pl @@ -747,7 +747,7 @@ sub check_form { exit; } - $form->error($locale->text('Zero amount posting!')) if ($form->{amount} eq "0,00" || $form->{amount} eq "0.00"); + $form->error($locale->text('Zero amount posting!')) if !$form->parse_amount(\%myconfig, $form->{amount}); $form->error($locale->text('Date missing!')) unless $form->{datepaid}; $closedto = $form->datetonum($form->{closedto}, \%myconfig); diff --git a/locale/de/all b/locale/de/all index 437ba2c08..9fe514854 100644 --- a/locale/de/all +++ b/locale/de/all @@ -1184,6 +1184,7 @@ gestartet', 'You\'ve already chosen the following limitations:' => 'Sie haben bereits die folgenden Einschränkungen vorgenommen:', 'Zeitpunkt' => 'Zeitpunkt', 'Zeitraum' => 'Zeitraum', + 'Zero amount posting!' => 'Nullbuchung!', 'Zip, City' => 'PLZ, Ort', 'Zipcode' => 'PLZ', 'Zusatz' => 'Zusatz', diff --git a/locale/de/cp b/locale/de/cp index 4ba7ed02e..a2961dfe7 100644 --- a/locale/de/cp +++ b/locale/de/cp @@ -107,6 +107,7 @@ $self->{texts} = { 'Vendor details' => 'Lieferantendetails', 'Vendor not on file or locked!' => 'Dieser Lieferant existiert nicht oder ist gesperrt.', 'Vendor not on file!' => 'Lieferant ist nicht in der Datenbank!', + 'Zero amount posting!' => 'Nullbuchung!', 'bin_list' => 'Lagerliste', 'button' => '?', 'invoice' => 'Rechnung',