Revision f5e4c22b
Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt
bin/mozilla/ap.pl | ||
---|---|---|
1387 | 1387 |
|
1388 | 1388 |
$report->set_export_options('ap_transactions', @hidden_variables); |
1389 | 1389 |
|
1390 |
$report->set_sort_indicator($form->{sort}, 1); |
|
1391 |
|
|
1390 | 1392 |
my @options; |
1391 | 1393 |
if ($form->{vendor}) { |
1392 | 1394 |
push @options, $locale->text('Vendor') . " : $form->{vendor}"; |
bin/mozilla/ar.pl | ||
---|---|---|
1433 | 1433 |
|
1434 | 1434 |
$report->set_export_options('ar_transactions', @hidden_variables); |
1435 | 1435 |
|
1436 |
$report->set_sort_indicator($form->{sort}, 1); |
|
1437 |
|
|
1436 | 1438 |
my @options; |
1437 | 1439 |
if ($form->{customer}) { |
1438 | 1440 |
push @options, $locale->text('Customer') . " : $form->{customer}"; |
bin/mozilla/oe.pl | ||
---|---|---|
1686 | 1686 |
|
1687 | 1687 |
$report->set_export_options('orders', @hidden_variables); |
1688 | 1688 |
|
1689 |
$report->set_sort_indicator($form->{sort}, 1); |
|
1690 |
|
|
1689 | 1691 |
my @options; |
1690 | 1692 |
if ($form->{customer}) { |
1691 | 1693 |
push @options, $locale->text('Customer') . " : $form->{customer}"; |
templates/webpages/report_generator/html_report_de.html | ||
---|---|---|
12 | 12 |
<table width="100%"> |
13 | 13 |
<tr> |
14 | 14 |
<TMPL_LOOP COLUMN_HEADERS> |
15 |
<th class="listheading"><TMPL_IF link><a href="<TMPL_VAR link>"></TMPL_IF><TMPL_VAR text ESCAPE=HTML><TMPL_IF link></a></TMPL_IF></th>
|
|
15 |
<th class="listheading"><TMPL_IF link><a href="<TMPL_VAR link>"></TMPL_IF><TMPL_VAR text ESCAPE=HTML><TMPL_IF link><TMPL_IF show_sort_indicator><img src="image/<TMPL_IF sort_indicator_direction>down<TMPL_ELSE>up</TMPL_IF>.png"></TMPL_IF></a><TMPL_ELSE><TMPL_IF show_sort_indicator><img src="image/<TMPL_IF sort_indicator_direction>down<TMPL_ELSE>up</TMPL_IF>.png"></TMPL_IF></TMPL_IF></th>
|
|
16 | 16 |
</TMPL_LOOP> |
17 | 17 |
</tr> |
18 | 18 |
|
templates/webpages/report_generator/html_report_master.html | ||
---|---|---|
12 | 12 |
<table width="100%"> |
13 | 13 |
<tr> |
14 | 14 |
<TMPL_LOOP COLUMN_HEADERS> |
15 |
<th class="listheading"><TMPL_IF link><a href="<TMPL_VAR link>"></TMPL_IF><TMPL_VAR text ESCAPE=HTML><TMPL_IF link></a></TMPL_IF></th>
|
|
15 |
<th class="listheading"><TMPL_IF link><a href="<TMPL_VAR link>"></TMPL_IF><TMPL_VAR text ESCAPE=HTML><TMPL_IF link><TMPL_IF show_sort_indicator><img src="image/<TMPL_IF sort_indicator_direction>down<TMPL_ELSE>up</TMPL_IF>.png"></TMPL_IF></a><TMPL_ELSE><TMPL_IF show_sort_indicator><img src="image/<TMPL_IF sort_indicator_direction>down<TMPL_ELSE>up</TMPL_IF>.png"></TMPL_IF></TMPL_IF></th>
|
|
16 | 16 |
</TMPL_LOOP> |
17 | 17 |
</tr> |
18 | 18 |
|
Auch abrufbar als: Unified diff
ReportGenerator: Einen Indikator aktiviert, der anzeigt, nach welcher Spalte gerade sortiert ist.