Revision 99131585
Von Moritz Bunkus vor fast 18 Jahren hinzugefügt
bin/mozilla/is.pl | ||
---|---|---|
@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;
|
bin/mozilla/oe.pl | ||
---|---|---|
@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;
|
Auch abrufbar als: Unified diff
Anzeige von weiteren Details in den Lieferadressendropdownboxen: Name, Abteilung, Straße, Ort.