Bug 4994 - Net::LDAP returns lowercase names
[koha.git] / opac / opac-topissues.pl
blob80e7c35aba235742c21b3eeca901e6f102cc98dd
1 #!/usr/bin/perl
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
11 # version.
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.
21 use strict;
22 use warnings;
24 use CGI;
25 use C4::Auth;
26 use C4::Context;
27 use C4::Search;
28 use C4::Output;
29 use C4::Koha;
30 use C4::Branch;
31 use Date::Manip;
33 =head1 NAME
35 plugin that shows a stats on borrowers
37 =head1 DESCRIPTION
39 =cut
41 my $input = new CGI;
42 my $branches = GetBranches();
43 my $itemtypes = GetItemTypes();
45 my ($template, $borrowernumber, $cookie)
46 = get_template_and_user({template_name => 'opac-topissues.tmpl',
47 query => $input,
48 type => "opac",
49 authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
50 debug => 1,
51 });
52 my $dbh = C4::Context->dbh;
53 # Displaying results
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');
60 my $whereclause = '';
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;
64 my $query;
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
72 FROM biblio
73 LEFT JOIN items USING (biblionumber)
74 LEFT JOIN biblioitems USING (biblionumber)
75 LEFT JOIN authorised_values ON items.ccode = authorised_values.authorised_value
76 WHERE 1
77 $whereclause
78 AND authorised_values.category = 'ccode'
79 GROUP BY biblio.biblionumber
80 HAVING tot >0
81 ORDER BY tot DESC
82 LIMIT $limit
84 $template->param(ccodesearch => 1);
85 }else{
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,
90 itemtypes.description
91 FROM biblio
92 LEFT JOIN items USING (biblionumber)
93 LEFT JOIN biblioitems USING (biblionumber)
94 LEFT JOIN itemtypes ON itemtypes.itemtype = biblioitems.itemtype
95 WHERE 1
96 $whereclause
97 GROUP BY biblio.biblionumber
98 HAVING tot >0
99 ORDER BY tot DESC
100 LIMIT $limit
102 $template->param(itemtypesearch => 1);
105 my $sth = $dbh->prepare($query);
106 $sth->execute();
107 my @results;
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,
116 limit => $limit,
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;
129 my @itemtypesloop;
130 my $selected=1;
131 if (!$advanced_search_types or $advanced_search_types eq 'itemtypes') {
132 foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
133 my $selected = 1 if $thisitemtype eq $itemtype;
134 my %row =( value => $thisitemtype,
135 description => $itemtypes->{$thisitemtype}->{'description'},
136 selected => $selected,
138 push @itemtypesloop, \%row;
140 } else {
141 my $advsearchtypes = GetAuthorisedValues($advanced_search_types, '', 'opac');
142 for my $thisitemtype (@$advsearchtypes) {
143 my $selected = 1 if $thisitemtype->{authorised_value} eq $itemtype;
144 my %row =( value => $thisitemtype->{authorised_value},
145 selected => $selected,
146 description => $thisitemtype->{'lib'},
148 push @itemtypesloop, \%row;
152 $template->param(
153 itemtypeloop =>\@itemtypesloop,
154 dateformat => C4::Context->preference("dateformat"),
156 output_html_with_http_headers $input, $cookie, $template->output;