X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fcp.pl;h=7daa8883a88fbc4c30d3c18c5c64009db749551e;hb=7b195af14e0c5a01f86d7dccdd72a3b14ee52430;hp=737cb307e73c30f6927acdadc4cf340bbdac9360;hpb=3266c24ccc8ec12e60a2a60a35e7760422e7862f;p=kivitendo-erp.git diff --git a/bin/mozilla/cp.pl b/bin/mozilla/cp.pl index 737cb307e..7daa8883a 100644 --- a/bin/mozilla/cp.pl +++ b/bin/mozilla/cp.pl @@ -72,9 +72,8 @@ sub payment { # für bugfix 1771 (doppelte Leerzeichen werden nicht 'gepostet') $form->{"select$form->{vc}"} = ""; - $form->{selectcustomer} .= "\n" if $form->{vc} eq "customer"; - if ($form->{"all_$form->{vc}"}) { + $form->{"select$form->{vc}"} .= "\n"; # s.o. jb 12.10.2010 $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id}; map { $form->{"select$form->{vc}"} .= "\n" } @@ -138,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}; }