X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=reports%2Fitemtypes.plugin;h=ffa6fb7a43f8e6c760429122fb306e42ba74304b;hb=2fdfbaf0ddbf214c0efb9a3a3c2595a54517f795;hp=813435440beff3cc5589311db34715dc8d9efed5;hpb=d508f0244bd288066d62dcaa40244702b2581514;p=koha.git diff --git a/reports/itemtypes.plugin b/reports/itemtypes.plugin index 813435440b..ffa6fb7a43 100755 --- a/reports/itemtypes.plugin +++ b/reports/itemtypes.plugin @@ -5,56 +5,35 @@ # # This file is part of Koha. # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . use strict; use C4::Auth; -use CGI; +use CGI qw ( -utf8 ); use C4::Context; use C4::Search; use C4::Output; use C4::Koha; -use C4::Branch; # GetBranches =head1 =cut sub set_parameters { - my ($template) = @_; - my $dbh = C4::Context->dbh; - my $branches=GetBranches(); - my @branches; - my $default; - my @select_branch; - my %select_branches; - push @select_branch,""; - $select_branches{""} = ""; - for my $branch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) { - push @select_branch, $branch; - $select_branches{$branch} = $branches->{$branch}->{'branchname'}; - $default = C4::Context->userenv->{'branch'} if (C4::Context->userenv && C4::Context->userenv->{'branch'}); - } - my $CGIbranch=CGI::scrolling_list( -name => 'value', - -id => 'value', - -values => \@select_branch, - -labels => \%select_branches, - -size => 1, - -multiple => 0, - -default => $default, ); - $template->param(CGIbranch => $CGIbranch); - return $template; + my ($template) = @_; + return $template; } + sub calculate { my ($parameters) = @_; my @results =(); @@ -64,7 +43,7 @@ sub calculate { if ($branch) { if (C4::Context->preference('item-level_itypes')) { $sth = $dbh->prepare(" - SELECT description, items.itype as itemtype, COUNT(*) AS total + SELECT itemtype, description, items.itype as itemtype, COUNT(*) AS total FROM itemtypes,items WHERE items.itype=itemtypes.itemtype AND items.holdingbranch=? @@ -74,7 +53,7 @@ sub calculate { } else { $sth = $dbh->prepare(" - SELECT description, biblioitems.itemtype, COUNT(*) AS total + SELECT itemtype, description, biblioitems.itemtype, COUNT(*) AS total FROM itemtypes, biblioitems, items WHERE biblioitems.itemtype=itemtypes.itemtype AND items.biblioitemnumber=biblioitems.biblioitemnumber @@ -86,14 +65,14 @@ sub calculate { } else { if (C4::Context->preference('item-level_itypes')) { $sth = $dbh->prepare(" - SELECT description,items.itype AS itemtype, COUNT(*) AS total + SELECT itemtype, description,items.itype AS itemtype, COUNT(*) AS total FROM itemtypes,items WHERE items.itype=itemtypes.itemtype GROUP BY items.itype ORDER BY itemtypes.description"); } else { - $sth = $dbh->prepare("SELECT description, biblioitems.itemtype, COUNT(*) AS total + $sth = $dbh->prepare("SELECT itemtype, description, biblioitems.itemtype, COUNT(*) AS total FROM itemtypes, biblioitems,items WHERE biblioitems.itemtype=itemtypes.itemtype AND biblioitems.biblioitemnumber = items.biblioitemnumber @@ -102,17 +81,17 @@ sub calculate { } $sth->execute; } - my ($description,$biblioitems,$total); + my ($itemtype, $description,$biblioitems,$total); my $grantotal = 0; my $count = 0; - while (($description,$biblioitems,$total) = $sth->fetchrow) { + while (($itemtype, $description,$biblioitems,$total) = $sth->fetchrow) { my %line; if($count % 2){ $line{toggle} = 1; } else { $line{toggle} = 0; } - $line{itemtype} = $description; + $line{itemtype} = $itemtype; $line{count} = $total; $grantotal += $total; push @results,\%line; @@ -123,7 +102,6 @@ sub calculate { $globalline{loopitemtype} = \@results; $globalline{total} = $grantotal; $globalline{branch} = $branch; - $globalline{branchname} = GetBranchName($branch); push @mainloop,\%globalline; return \@mainloop; }