Revision f7150766
Von Moritz Bunkus vor fast 17 Jahren hinzugefügt
bin/mozilla/oe.pl | ||
---|---|---|
1049 | 1049 |
$report->set_sort_indicator($form->{sort}, 1); |
1050 | 1050 |
|
1051 | 1051 |
my @options; |
1052 |
my ($department) = split m/--/, $form->{department}; |
|
1052 | 1053 |
|
1053 |
push @options, $locale->text('Customer') . " : $form->{customer}" if $form->{customer}; |
|
1054 |
push @options, $locale->text('Vendor') . " : $form->{vendor}" if $form->{vendor}; |
|
1055 |
($department) = split /--/, $form->{department}; |
|
1056 |
push @options, $locale->text('Department') . " : $department" if $form->{department}; |
|
1057 |
push @options, $locale->text('Order Number') . " : $form->{ordnumber}" if $form->{ordnumber}; |
|
1058 |
push @options, $locale->text('Notes') . " : $form->{notes}" if $form->{notes}; |
|
1054 |
push @options, $locale->text('Customer') . " : $form->{customer}" if $form->{customer}; |
|
1055 |
push @options, $locale->text('Vendor') . " : $form->{vendor}" if $form->{vendor}; |
|
1056 |
push @options, $locale->text('Department') . " : $department" if $form->{department}; |
|
1057 |
push @options, $locale->text('Order Number') . " : $form->{ordnumber}" if $form->{ordnumber}; |
|
1058 |
push @options, $locale->text('Notes') . " : $form->{notes}" if $form->{notes}; |
|
1059 | 1059 |
push @options, $locale->text('Transaction description') . " : $form->{transaction_description}" if $form->{transaction_description}; |
1060 | 1060 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1) if $form->{transdatefrom}; |
1061 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1) if $form->{transdateto};
|
|
1061 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1) if $form->{transdateto};
|
|
1062 | 1062 |
push @options, $locale->text('Open') if $form->{open}; |
1063 | 1063 |
push @options, $locale->text('Closed') if $form->{closed}; |
1064 | 1064 |
push @options, $locale->text('Delivered') if $form->{delivered}; |
Auch abrufbar als: Unified diff
Kosmetik.