Revision 64c4e3c6
Von Moritz Bunkus vor fast 16 Jahren hinzugefügt
bin/mozilla/ap.pl | ||
---|---|---|
1451 | 1451 |
push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"; |
1452 | 1452 |
} |
1453 | 1453 |
if ($form->{transdatefrom}) { |
1454 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
|
1454 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
|
1455 | 1455 |
} |
1456 | 1456 |
if ($form->{transdateto}) { |
1457 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
|
1457 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
|
1458 | 1458 |
} |
1459 | 1459 |
if ($form->{open}) { |
1460 | 1460 |
push @options, $locale->text('Open'); |
bin/mozilla/ar.pl | ||
---|---|---|
1538 | 1538 |
push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"; |
1539 | 1539 |
} |
1540 | 1540 |
if ($form->{transdatefrom}) { |
1541 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
|
1541 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
|
1542 | 1542 |
} |
1543 | 1543 |
if ($form->{transdateto}) { |
1544 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
|
1544 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
|
1545 | 1545 |
} |
1546 | 1546 |
if ($form->{open}) { |
1547 | 1547 |
push @options, $locale->text('Open'); |
bin/mozilla/do.pl | ||
---|---|---|
485 | 485 |
push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"; |
486 | 486 |
} |
487 | 487 |
if ($form->{transdatefrom}) { |
488 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
|
488 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
|
|
489 | 489 |
} |
490 | 490 |
if ($form->{transdateto}) { |
491 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
|
491 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
|
|
492 | 492 |
} |
493 | 493 |
if ($form->{open}) { |
494 | 494 |
push @options, $locale->text('Open'); |
bin/mozilla/oe.pl | ||
---|---|---|
965 | 965 |
push @options, $locale->text('Order Number') . " : $form->{ordnumber}" if $form->{ordnumber}; |
966 | 966 |
push @options, $locale->text('Notes') . " : $form->{notes}" if $form->{notes}; |
967 | 967 |
push @options, $locale->text('Transaction description') . " : $form->{transaction_description}" if $form->{transaction_description}; |
968 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1) if $form->{transdatefrom};
|
|
969 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1) if $form->{transdateto};
|
|
968 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1) if $form->{transdatefrom};
|
|
969 |
push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1) if $form->{transdateto};
|
|
970 | 970 |
push @options, $locale->text('Open') if $form->{open}; |
971 | 971 |
push @options, $locale->text('Closed') if $form->{closed}; |
972 | 972 |
push @options, $locale->text('Delivered') if $form->{delivered}; |
bin/mozilla/rp.pl | ||
---|---|---|
2374 | 2374 |
|
2375 | 2375 |
my @options; |
2376 | 2376 |
if ($form->{fromdate}) { |
2377 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{fromdate}, 1);
|
|
2377 |
push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{fromdate}, 1);
|
|
2378 | 2378 |
} |
2379 | 2379 |
if ($form->{todate}) { |
2380 |
push @options, $locale->text('bis') . " " . $locale->date(\%myconfig, $form->{todate}, 1);
|
|
2380 |
push @options, $locale->text('bis') . " " . $locale->date(\%myconfig, $form->{todate}, 1);
|
|
2381 | 2381 |
} |
2382 | 2382 |
|
2383 | 2383 |
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.