Revision 64c4e3c6
Von Moritz Bunkus vor mehr als 16 Jahren hinzugefügt
bin/mozilla/ap.pl | ||
---|---|---|
push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
|
||
}
|
||
if ($form->{transdatefrom}) {
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
||
}
|
||
if ($form->{transdateto}) {
|
||
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
||
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
||
}
|
||
if ($form->{open}) {
|
||
push @options, $locale->text('Open');
|
bin/mozilla/ar.pl | ||
---|---|---|
push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
|
||
}
|
||
if ($form->{transdatefrom}) {
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
||
}
|
||
if ($form->{transdateto}) {
|
||
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
||
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
||
}
|
||
if ($form->{open}) {
|
||
push @options, $locale->text('Open');
|
bin/mozilla/do.pl | ||
---|---|---|
push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
|
||
}
|
||
if ($form->{transdatefrom}) {
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
||
}
|
||
if ($form->{transdateto}) {
|
||
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
||
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
||
}
|
||
if ($form->{open}) {
|
||
push @options, $locale->text('Open');
|
bin/mozilla/oe.pl | ||
---|---|---|
push @options, $locale->text('Order Number') . " : $form->{ordnumber}" if $form->{ordnumber};
|
||
push @options, $locale->text('Notes') . " : $form->{notes}" if $form->{notes};
|
||
push @options, $locale->text('Transaction description') . " : $form->{transaction_description}" if $form->{transaction_description};
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1) if $form->{transdatefrom};
|
||
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1) if $form->{transdateto};
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1) if $form->{transdatefrom};
|
||
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1) if $form->{transdateto};
|
||
push @options, $locale->text('Open') if $form->{open};
|
||
push @options, $locale->text('Closed') if $form->{closed};
|
||
push @options, $locale->text('Delivered') if $form->{delivered};
|
bin/mozilla/rp.pl | ||
---|---|---|
|
||
my @options;
|
||
if ($form->{fromdate}) {
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{fromdate}, 1);
|
||
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{fromdate}, 1);
|
||
}
|
||
if ($form->{todate}) {
|
||
push @options, $locale->text('bis') . " " . $locale->date(\%myconfig, $form->{todate}, 1);
|
||
push @options, $locale->text('bis') . " " . $locale->date(\%myconfig, $form->{todate}, 1);
|
||
}
|
||
|
||
my $report = SL::ReportGenerator->new(\%myconfig, $form);
|
Auch abrufbar als: Unified diff
Der ReportGenerator escapet HTML-Sonderzeichen, sodass auch wortwörtlich so zu sehen ist -- also ihm nur ein normales Leerzeichen übergeben.