View | Details | Raw Unified | Return to bug 9188
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/borrowers_stats.tt (-1 / +1 lines)
Lines 6-12 Link Here
6
6
7
<p>If you choose to output to the browser your results will print to the screen.</p>
7
<p>If you choose to output to the browser your results will print to the screen.</p>
8
8
9
<p>Based on your selections, you may see some query information above your results table. You can also choose to export to a file that you can manipulate to your needs.</p>
9
<p>You can also choose to export to a file that you can manipulate to your needs.</p>
10
10
11
<p><strong>See the full documentation for Patron Statistics in the <a href="http://manual.koha-community.org/[% helpVersion %]/en/statsreports.html#patstats">manual</a> (online).</strong></p>
11
<p><strong>See the full documentation for Patron Statistics in the <a href="http://manual.koha-community.org/[% helpVersion %]/en/statsreports.html#patstats">manual</a> (online).</strong></p>
12
12
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt (+2 lines)
Lines 24-35 Link Here
24
	[% FOREACH mainloo IN mainloop %]
24
	[% FOREACH mainloo IN mainloop %]
25
		<h1>Patrons statistics</h1>
25
		<h1>Patrons statistics</h1>
26
		[% IF ( mainloo.loopfilter ) %]
26
		[% IF ( mainloo.loopfilter ) %]
27
                    [% IF ( filtered_on_debug ) %]
27
            <p>Filtered on:</p>
28
            <p>Filtered on:</p>
28
			[% FOREACH loopfilte IN mainloo.loopfilter %]
29
			[% FOREACH loopfilte IN mainloo.loopfilter %]
29
				<p>
30
				<p>
30
					[% loopfilte.crit %] = [% loopfilte.filter %]
31
					[% loopfilte.crit %] = [% loopfilte.filter %]
31
				</p>
32
				</p>
32
			[% END %]
33
			[% END %]
34
                    [% END %]
33
		[% END %]
35
		[% END %]
34
		<table>
36
		<table>
35
			<tr>
37
			<tr>
(-)a/reports/borrowers_stats.pl (-1 / +1 lines)
Lines 76-81 my ($template, $borrowernumber, $cookie) Link Here
76
				});
76
				});
77
$template->param(do_it => $do_it);
77
$template->param(do_it => $do_it);
78
if ($do_it) {
78
if ($do_it) {
79
        $template->param(filtered_on_debug => 0);
79
        my $attributes;
80
        my $attributes;
80
        if (C4::Context->preference('ExtendedPatronAttributes')) {
81
        if (C4::Context->preference('ExtendedPatronAttributes')) {
81
            $attributes = parse_extended_patron_attributes($input);
82
            $attributes = parse_extended_patron_attributes($input);
82
- 

Return to bug 9188