Bug 18941 - C4::Budgets GetBudgetByCode should return active budgets over inactive...
[koha.git] / members / routing-lists.pl
blob6b024bdc160ebc0c3e939822d2bb7b86f772437b
1 #!/usr/bin/perl
3 # Copyright 2012 Prosentient Systems
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use strict;
21 #use warnings; FIXME - Bug 2505
22 use CGI qw ( -utf8 );
23 use C4::Output;
24 use C4::Auth qw/:DEFAULT/;
25 use C4::Members;
26 use C4::Members::Attributes qw(GetBorrowerAttributes);
27 use C4::Context;
28 use C4::Serials;
29 use Koha::Patrons;
30 use CGI::Session;
32 my $query = new CGI;
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
36 template_name => 'members/routing-lists.tt',
37 query => $query,
38 type => "intranet",
39 authnotrequired => 0,
40 flagsrequired => { circulate => 'circulate_remaining_permissions' },
44 my $findborrower = $query->param('findborrower');
45 $findborrower =~ s|,| |g;
47 my $borrowernumber = $query->param('borrowernumber');
49 my $branch = C4::Context->userenv->{'branch'};
51 # get the borrower information.....
52 my ( $patron, $patron_info );
53 if ($borrowernumber) {
54 $patron = Koha::Patrons->find( $borrowernumber );
55 my $category = $patron->category;
56 $patron_info = $patron->unblessed;
57 $patron_info->{description} = $category->description;
58 $patron_info->{category_type} = $category->category_type;
60 my $count;
61 my @borrowerSubscriptions;
62 ($count, @borrowerSubscriptions) = GetSubscriptionsFromBorrower($borrowernumber );
63 my @subscripLoop;
65 foreach my $num_res (@borrowerSubscriptions) {
66 my %getSubscrip;
67 $getSubscrip{subscriptionid} = $num_res->{'subscriptionid'};
68 $getSubscrip{title} = $num_res->{'title'};
69 $getSubscrip{borrowernumber} = $num_res->{'borrowernumber'};
70 push( @subscripLoop, \%getSubscrip );
73 $template->param(
74 countSubscrip => scalar @subscripLoop,
75 subscripLoop => \@subscripLoop,
76 routinglistview => 1
79 $template->param( adultborrower => 1 ) if ( $patron_info->{category_type} =~ /^(A|I)$/ );
82 ##################################################################################
84 $template->param(%$patron_info);
86 $template->param(
87 findborrower => $findborrower,
88 borrower => $patron_info,
89 borrowernumber => $borrowernumber,
90 branch => $branch,
91 categoryname => $patron_info->{description},
92 RoutingSerials => C4::Context->preference('RoutingSerials'),
95 if (C4::Context->preference('ExtendedPatronAttributes')) {
96 my $attributes = GetBorrowerAttributes($borrowernumber);
97 $template->param(
98 ExtendedPatronAttributes => 1,
99 extendedattributes => $attributes
103 $template->param( picture => 1 ) if $patron and $patron->image;
105 output_html_with_http_headers $query, $cookie, $template->output;