Anzeige von weiteren Details in den Lieferadressendropdownboxen: Name, Abteilung...
authorMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 14 May 2007 14:02:08 +0000 (14:02 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 14 May 2007 14:02:08 +0000 (14:02 +0000)
bin/mozilla/is.pl
bin/mozilla/oe.pl

index 77ae22c..7d3be25 100644 (file)
@@ -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;
index cfbb216..ce468b5 100644 (file)
@@ -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;