4 # Copyright 2000-2002 Katipo Communications
5 # Parts Copyright Catalyst IT 2011
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
36 plugin that shows a stats on borrowers
44 # if OpacTopissue is disabled, leave immediately
45 if ( ! C4
::Context
->preference('OpacTopissue') ) {
46 print $input->redirect("/cgi-bin/koha/errors/404.pl");
50 my $branches = GetBranches
();
51 my $itemtypes = GetItemTypes
();
53 my ($template, $borrowernumber, $cookie)
54 = get_template_and_user
({template_name
=> 'opac-topissues.tmpl',
57 authnotrequired
=> ( C4
::Context
->preference("OpacPublic") ?
1 : 0 ),
60 my $dbh = C4
::Context
->dbh;
62 my $limit = $input->param('limit');
63 $limit = 10 unless ($limit && $limit =~ /^\d+$/); # control user input for SQL query
64 $limit = 100 if $limit > 100;
65 my $branch = $input->param('branch') || '';
66 my $itemtype = $input->param('itemtype') || '';
67 my $timeLimit = $input->param('timeLimit') || 3;
68 my $advanced_search_types = C4
::Context
->preference('AdvancedSearchTypes');
71 $whereclause .= ' AND items.homebranch='.$dbh->quote($branch) if ($branch);
72 $whereclause .= ' AND TO_DAYS(NOW()) - TO_DAYS(biblio.datecreated) <= '.($timeLimit*30) if $timeLimit < 999;
73 $whereclause =~ s/ AND $// if $whereclause;
76 if($advanced_search_types eq 'ccode'){
77 $whereclause .= ' AND authorised_values.authorised_value='.$dbh->quote($itemtype) if $itemtype;
78 $query = "SELECT datecreated, biblio.biblionumber, title,
79 author, sum( items.issues ) AS tot, biblioitems.itemtype,
80 biblioitems.publishercode,biblioitems.publicationyear,
81 authorised_values.lib as description
83 LEFT JOIN items USING (biblionumber)
84 LEFT JOIN biblioitems USING (biblionumber)
85 LEFT JOIN authorised_values ON items.ccode = authorised_values.authorised_value
88 AND authorised_values.category = 'ccode'
89 GROUP BY biblio.biblionumber
94 $template->param(ccodesearch
=> 1);
97 if (C4
::Context
->preference('item-level_itypes')){
98 $whereclause .= ' AND items.itype = ' . $dbh->quote($itemtype);
101 $whereclause .= ' AND biblioitems.itemtype='.$dbh->quote($itemtype);
104 $query = "SELECT datecreated, biblio.biblionumber, title,
105 author, sum( items.issues ) AS tot, biblioitems.itemtype,
106 biblioitems.publishercode,biblioitems.publicationyear,
107 itemtypes.description
109 LEFT JOIN items USING (biblionumber)
110 LEFT JOIN biblioitems USING (biblionumber)
111 LEFT JOIN itemtypes ON itemtypes.itemtype = biblioitems.itemtype
114 GROUP BY biblio.biblionumber
119 $template->param(itemtypesearch
=> 1);
122 my $sth = $dbh->prepare($query);
123 $sth->execute($limit);
125 while (my $line= $sth->fetchrow_hashref) {
126 push @results, $line;
129 my $timeLimitFinite = $timeLimit;
130 if($timeLimit eq 999){ $timeLimitFinite = 0 };
132 $template->param(do_it
=> 1,
134 branch
=> $branches->{$branch}->{branchname
},
135 itemtype
=> $itemtypes->{$itemtype}->{description
},
136 timeLimit
=> $timeLimit,
137 timeLimitFinite
=> $timeLimitFinite,
138 results_loop
=> \
@results,
141 $template->param( branchloop
=> GetBranchesLoop
(C4
::Context
->userenv?C4
::Context
->userenv->{'branch'}:''));
143 # the index parameter is different for item-level itemtypes
144 my $itype_or_itemtype = (C4
::Context
->preference("item-level_itypes"))?
'itype':'itemtype';
145 $itemtypes = GetItemTypes
;
147 if (!$advanced_search_types or $advanced_search_types eq 'itemtypes') {
148 foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
149 my %row =( value
=> $thisitemtype,
150 description
=> $itemtypes->{$thisitemtype}->{'description'},
151 selected
=> $thisitemtype eq $itemtype,
153 push @itemtypesloop, \
%row;
156 my $advsearchtypes = GetAuthorisedValues
($advanced_search_types, '', 'opac');
157 for my $thisitemtype (@
$advsearchtypes) {
159 $selected = 1 if $thisitemtype->{authorised_value
} eq $itemtype;
160 my %row =( value
=> $thisitemtype->{authorised_value
},
161 selected
=> $thisitemtype eq $itemtype,
162 description
=> $thisitemtype->{'lib'},
164 push @itemtypesloop, \
%row;
169 itemtypeloop
=>\
@itemtypesloop,
171 output_html_with_http_headers
$input, $cookie, $template->output;