From: Moritz Bunkus Date: Mon, 14 May 2007 14:02:08 +0000 (+0000) Subject: Anzeige von weiteren Details in den Lieferadressendropdownboxen: Name, Abteilung... X-Git-Tag: release-2.4.3^2~318 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=991315859c7b0f25da49baad4822492510b6b3bb;p=kivitendo-erp.git Anzeige von weiteren Details in den Lieferadressendropdownboxen: Name, Abteilung, Straße, Ort. --- diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index 77ae22c8b..7d3be25c3 100644 --- a/bin/mozilla/is.pl +++ b/bin/mozilla/is.pl @@ -392,8 +392,7 @@ sub form_header { @values = (""); foreach my $item (@{ $form->{"ALL_SHIPTO"} }) { push(@values, $item->{"shipto_id"}); - $labels{$item->{"shipto_id"}} = - $item->{"shiptoname"} . " " . $item->{"shiptodepartment_1"}; + $labels{$item->{"shipto_id"}} = join "; ", grep { $_ } map { $item->{"shipto${_}" } } qw(name department_1 street city); } my $shipto; diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index cfbb216ad..ce468b511 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -463,8 +463,7 @@ sub form_header { @values = (""); foreach my $item (@{ $form->{"ALL_SHIPTO"} }) { push(@values, $item->{"shipto_id"}); - $labels{$item->{"shipto_id"}} = - $item->{"shiptoname"} . " " . $item->{"shiptodepartment_1"}; + $labels{$item->{"shipto_id"}} = join "; ", grep { $_ } map { $item->{"shipto${_}" } } qw(name department_1 street city); } my $shipto;