From: Waldemar Toews Date: Wed, 8 Jan 2014 10:33:33 +0000 (+0100) Subject: Zahlungseingang: Im Eingabe Feld für Kunden die "--" unterdrücken. X-Git-Tag: release-3.1.0beta1~22^2~22^2~19^2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=c4a38e5bc67a92f4a680a0a31f80037f93ac720d;p=kivitendo-erp.git Zahlungseingang: Im Eingabe Feld für Kunden die "--" unterdrücken. --- diff --git a/bin/mozilla/cp.pl b/bin/mozilla/cp.pl index c6a61526f..ee5e56d9f 100644 --- a/bin/mozilla/cp.pl +++ b/bin/mozilla/cp.pl @@ -137,7 +137,7 @@ sub form_header { # sometimes it happens that values in customer arrive without the signs '--' # but in order to select the right option field we need values with '--' - if ($form->{vc} eq "customer"){ + if ($form->{vc} eq "customer" && $form->{"all_$form->{vc}"}){ my ($customername) = split /--/, $form->{ $form->{vc} }; $form->{ $form->{vc} } = $customername . "--" . $form->{customer_id}; }