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
42 my $branches = GetBranches
();
43 my $itemtypes = GetItemTypes
();
45 my ($template, $borrowernumber, $cookie)
46 = get_template_and_user
({template_name
=> 'opac-topissues.tmpl',
49 authnotrequired
=> ( C4
::Context
->preference("OpacPublic") ?
1 : 0 ),
52 my $dbh = C4
::Context
->dbh;
54 my $limit = $input->param('limit') || 10;
55 my $branch = $input->param('branch') || '';
56 my $itemtype = $input->param('itemtype') || '';
57 my $timeLimit = $input->param('timeLimit') || 3;
58 my $advanced_search_types = C4
::Context
->preference('AdvancedSearchTypes');
61 $whereclause .= ' AND items.homebranch='.$dbh->quote($branch) if ($branch);
62 $whereclause .= ' AND TO_DAYS(NOW()) - TO_DAYS(biblio.datecreated) <= '.($timeLimit*30) if $timeLimit < 999;
63 $whereclause =~ s/ AND $// if $whereclause;
66 if($advanced_search_types eq 'ccode'){
67 $whereclause .= ' AND authorised_values.authorised_value='.$dbh->quote($itemtype) if $itemtype;
68 $query = "SELECT datecreated, biblio.biblionumber, title,
69 author, sum( items.issues ) AS tot, biblioitems.itemtype,
70 biblioitems.publishercode,biblioitems.publicationyear,
71 authorised_values.lib as description
73 LEFT JOIN items USING (biblionumber)
74 LEFT JOIN biblioitems USING (biblionumber)
75 LEFT JOIN authorised_values ON items.ccode = authorised_values.authorised_value
78 AND authorised_values.category = 'ccode'
79 GROUP BY biblio.biblionumber
84 $template->param(ccodesearch
=> 1);
86 $whereclause .= ' AND biblioitems.itemtype='.$dbh->quote($itemtype) if $itemtype;
87 $query = "SELECT datecreated, biblio.biblionumber, title,
88 author, sum( items.issues ) AS tot, biblioitems.itemtype,
89 biblioitems.publishercode,biblioitems.publicationyear,
92 LEFT JOIN items USING (biblionumber)
93 LEFT JOIN biblioitems USING (biblionumber)
94 LEFT JOIN itemtypes ON itemtypes.itemtype = biblioitems.itemtype
97 GROUP BY biblio.biblionumber
102 $template->param(itemtypesearch
=> 1);
105 my $sth = $dbh->prepare($query);
108 while (my $line= $sth->fetchrow_hashref) {
109 push @results, $line;
112 my $timeLimitFinite = $timeLimit;
113 if($timeLimit eq 999){ $timeLimitFinite = 0 };
115 $template->param(do_it
=> 1,
117 branch
=> $branches->{$branch}->{branchname
} || 'all locations',
118 itemtype
=> $itemtypes->{$itemtype}->{description
} || 'item types',
119 timeLimit
=> $timeLimit,
120 timeLimitFinite
=> $timeLimit,
121 results_loop
=> \
@results,
124 $template->param( branchloop
=> GetBranchesLoop
(C4
::Context
->userenv->{'branch'}));
126 # the index parameter is different for item-level itemtypes
127 my $itype_or_itemtype = (C4
::Context
->preference("item-level_itypes"))?
'itype':'itemtype';
128 $itemtypes = GetItemTypes
;
130 if (!$advanced_search_types or $advanced_search_types eq 'itemtypes') {
131 foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
132 my %row =( value
=> $thisitemtype,
133 description
=> $itemtypes->{$thisitemtype}->{'description'},
134 selected
=> $thisitemtype eq $itemtype,
136 push @itemtypesloop, \
%row;
139 my $advsearchtypes = GetAuthorisedValues
($advanced_search_types, '', 'opac');
140 for my $thisitemtype (@
$advsearchtypes) {
141 my $selected = 1 if $thisitemtype->{authorised_value
} eq $itemtype;
142 my %row =( value
=> $thisitemtype->{authorised_value
},
143 selected
=> $thisitemtype eq $itemtype,
144 description
=> $thisitemtype->{'lib'},
146 push @itemtypesloop, \
%row;
151 itemtypeloop
=>\
@itemtypesloop,
152 dateformat
=> C4
::Context
->preference("dateformat"),
154 output_html_with_http_headers
$input, $cookie, $template->output;