4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
35 plugin that shows a stats on borrowers
44 my $branches = GetBranches
();
45 my $itemtypes = GetItemTypes
();
47 my ($template, $borrowernumber, $cookie)
48 = get_template_and_user
({template_name
=> 'opac-topissues.tmpl',
54 my $dbh = C4
::Context
->dbh;
56 my $limit = $input->param('limit') || 10;
57 my $branch = $input->param('branch') || '';
58 my $itemtype = $input->param('itemtype') || '';
59 my $timeLimit = $input->param('timeLimit') || 3;
61 $whereclause .= 'items.homebranch='.$dbh->quote($branch)." AND " if ($branch);
62 $whereclause .= 'biblioitems.itemtype='.$dbh->quote($itemtype)." AND " if $itemtype;
63 $whereclause .= ' TO_DAYS(NOW()) - TO_DAYS(biblio.datecreated) <= '.($timeLimit*30).' AND ' if $timeLimit < 999;
64 $whereclause =~ s/ AND $// if $whereclause;
65 $whereclause = " WHERE ".$whereclause if $whereclause;
67 my $query = "SELECT datecreated, biblio.biblionumber, title,
68 author, sum( items.issues ) AS tot, biblioitems.itemtype,
69 biblioitems.publishercode,biblioitems.publicationyear,
72 LEFT JOIN items USING (biblionumber)
73 LEFT JOIN biblioitems USING (biblionumber)
74 LEFT JOIN itemtypes ON itemtypes.itemtype = biblioitems.itemtype
76 GROUP BY biblio.biblionumber
82 my $sth = $dbh->prepare($query);
85 while (my $line= $sth->fetchrow_hashref) {
89 my $timeLimitFinite = $timeLimit;
90 if($timeLimit eq 999){ $timeLimitFinite = 0 };
92 $template->param(do_it
=> 1,
94 branch
=> $branches->{$branch}->{branchname
} || 'all locations',
95 itemtype
=> $itemtypes->{$itemtype}->{description
} || 'item types',
96 timeLimit
=> $timeLimit,
97 timeLimitFinite
=> $timeLimit,
98 results_loop
=> \
@results,
101 $template->param( branchloop
=> GetBranchesLoop
(C4
::Context
->userenv->{'branch'}));
104 $itemtypes = GetItemTypes
;
106 foreach my $thisitemtype (sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'}} keys %$itemtypes) {
107 my $selected = 1 if $thisitemtype eq $itemtype;
108 my %row =(value
=> $thisitemtype,
109 description
=> $itemtypes->{$thisitemtype}->{'description'},
110 selected
=> $selected,
112 push @itemtypeloop, \
%row;
116 itemtypeloop
=>\
@itemtypeloop,
117 dateformat
=> C4
::Context
->preference("dateformat"),
119 output_html_with_http_headers
$input, $cookie, $template->output;