Bug 19080: Fix perlcritic in routing-lists.pl
[koha.git] / members / routing-lists.pl
1 #!/usr/bin/perl
2
3 # Copyright 2012 Prosentient Systems
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
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;
31
32 my $query = new CGI;
33
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
35     {
36         template_name   => 'members/routing-lists.tt',
37         query           => $query,
38         type            => "intranet",
39         authnotrequired => 0,
40         flagsrequired   => { circulate => 'circulate_remaining_permissions' },
41     }
42 );
43
44 my $findborrower = $query->param('findborrower');
45 $findborrower =~ s|,| |g;
46
47 my $borrowernumber = $query->param('borrowernumber');
48
49 my $branch = C4::Context->userenv->{'branch'};
50
51 my $patron;
52 $patron = Koha::Patrons->find( $borrowernumber ) if $borrowernumber;
53 unless ( $patron ) {
54     print $query->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
55     exit;
56 }
57
58 my $category = $patron->category;
59 my $patron_info = $patron->unblessed;
60 $patron_info->{description} = $category->description;
61 $patron_info->{category_type} = $category->category_type;
62
63 my $count;
64 my @borrowerSubscriptions;
65 ($count, @borrowerSubscriptions) = GetSubscriptionsFromBorrower($borrowernumber );
66 my @subscripLoop;
67
68 foreach my $num_res (@borrowerSubscriptions) {
69     my %getSubscrip;
70     $getSubscrip{subscriptionid} = $num_res->{'subscriptionid'};
71     $getSubscrip{title}          = $num_res->{'title'};
72     $getSubscrip{borrowernumber} = $num_res->{'borrowernumber'};
73     push( @subscripLoop, \%getSubscrip );
74 }
75
76 $template->param(
77     countSubscrip => scalar @subscripLoop,
78     subscripLoop  => \@subscripLoop,
79     routinglistview => 1
80 );
81
82 $template->param( adultborrower => 1 ) if ( $patron_info->{category_type} =~ /^(A|I)$/ );
83
84 ##################################################################################
85
86 $template->param(%$patron_info);
87
88 $template->param(
89     findborrower      => $findborrower,
90     borrower          => $patron_info,
91     borrowernumber    => $borrowernumber,
92     branch            => $branch,
93     categoryname      => $patron_info->{description},
94     RoutingSerials    => C4::Context->preference('RoutingSerials'),
95 );
96
97 if (C4::Context->preference('ExtendedPatronAttributes')) {
98     my $attributes = GetBorrowerAttributes($borrowernumber);
99     $template->param(
100         ExtendedPatronAttributes => 1,
101         extendedattributes => $attributes
102     );
103 }
104
105 $template->param( picture => 1 ) if $patron and $patron->image;
106
107 output_html_with_http_headers $query, $cookie, $template->output;