X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=reports%2Fissues_by_borrower_category.plugin;h=825a492ebb4237daea645a7be6a9c70e18bee8f7;hb=3fcdd902f8fcd6d64fba8f434ae811d8e1a04fdd;hp=473590f0244b132d7218afe5f4b722ce9b8e3c5f;hpb=0dd40fa3038ba4e9d7713f2abdf477496996a740;p=koha_gimpoz diff --git a/reports/issues_by_borrower_category.plugin b/reports/issues_by_borrower_category.plugin old mode 100644 new mode 100755 index 473590f024..825a492ebb --- a/reports/issues_by_borrower_category.plugin +++ b/reports/issues_by_borrower_category.plugin @@ -1,6 +1,5 @@ #!/usr/bin/perl -# $Id$ # Copyright 2000-2002 Katipo Communications # @@ -15,18 +14,19 @@ # 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., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# 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. use strict; use C4::Auth; use CGI; use C4::Context; -use HTML::Template::Pro; use C4::Search; use C4::Output; use C4::Koha; +use C4::Members; + use C4::Branch; # GetBranches =head1 NAME @@ -75,12 +75,21 @@ sub set_parameters { $select_branches{$branch} = $branches->{$branch}->{'branchname'}; } my $CGIbranch=CGI::scrolling_list( -name => 'value', - -id => 'value', + -id => 'branch', -values => \@select_branch, -labels => \%select_branches, -size => 1, -multiple => 0 ); $template->param(CGIbranch => $CGIbranch); + + my ($codes,$labels)=GetborCatFromCatType(undef,undef); + my @borcatloop; + foreach my $thisborcat (sort keys %$labels) { + push @borcatloop, {value => $thisborcat, + description => $labels->{$thisborcat}, + }; + } + $template->param(loopcategories => \@borcatloop); return $template; } sub calculate {