@@ -, +, @@ on patrons with the most checkouts report - Checkout date from - Checkout date to - Checkin date from - Checkin date to - Library - Item type - Patron category --- .../prog/en/modules/reports/bor_issues_top.tt | 42 +++++++++++++++++++--- reports/bor_issues_top.pl | 2 +- 2 files changed, 38 insertions(+), 6 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/bor_issues_top.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/bor_issues_top.tt @@ -1,3 +1,6 @@ +[% USE Branches %] +[% USE KohaDates %] +[% USE ItemTypes %] [% INCLUDE 'doc-head-open.inc' %] Koha › Reports › Patrons with the most checkouts [% INCLUDE 'doc-head-close.inc' %] @@ -57,12 +60,41 @@ function Dopop(link) { [% FOREACH mainloo IN mainloop %] -

Top [% mainloo.limit %] List patrons for checkouts

+

Patrons with the most checkouts

[% IF ( mainloo.loopfilter ) %] -

Filtered on:

- [% FOREACH loopfilte IN mainloo.loopfilter %] -

[% IF ( loopfilte.err ) %] [% END %] [% loopfilte.crit %] =[% loopfilte.filter %][% IF ( loopfilte.err ) %] [% END %]

- [% END %] + [% IF mainloo.loopfilter.size %] +

Filtered on:

+ + [% END %] [% END %] --- a/reports/bor_issues_top.pl +++ a/reports/bor_issues_top.pl @@ -181,7 +181,7 @@ sub calculate { $cell{err} = 1 if (@$filters[$i]<@$filters[$i-1]) ; } # format the dates filters, otherwise just fill as is - $cell{filter} .= ($i>=4) ? @$filters[$i] : format_date(@$filters[$i]); + $cell{filter} .= @$filters[$i]; defined ($cellmap[$i]) and $cell{crit} .= $cellmap[$i]; push @loopfilter, \%cell; --