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>.
21 #use warnings; FIXME - Bug 2505
24 use C4
::Auth qw
/:DEFAULT/;
26 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
29 use Koha
::Patron
::Images
;
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
36 template_name
=> 'members/routing-lists.tt',
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.....
53 if ($borrowernumber) {
54 $borrower = GetMember
( borrowernumber
=> $borrowernumber );
58 ##################################################################################
60 # I'm trying to show the title of subscriptions where the borrowernumber is attached via a routing list
62 if ($borrowernumber) {
65 my @borrowerSubscriptions;
66 ($count, @borrowerSubscriptions) = GetSubscriptionsFromBorrower
($borrowernumber );
69 foreach my $num_res (@borrowerSubscriptions) {
71 $getSubscrip{subscriptionid
} = $num_res->{'subscriptionid'};
72 $getSubscrip{title
} = $num_res->{'title'};
73 $getSubscrip{borrowernumber
} = $num_res->{'borrowernumber'};
74 push( @subscripLoop, \
%getSubscrip );
78 countSubscrip
=> scalar @subscripLoop,
79 subscripLoop
=> \
@subscripLoop,
83 $template->param( adultborrower
=> 1 ) if ( $borrower->{'category_type'} eq 'A' );
86 ##################################################################################
88 $template->param(%$borrower);
91 findborrower
=> $findborrower,
92 borrower
=> $borrower,
93 borrowernumber
=> $borrowernumber,
95 categoryname
=> $borrower->{description
},
96 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
99 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
100 my $attributes = GetBorrowerAttributes
($borrowernumber);
102 ExtendedPatronAttributes
=> 1,
103 extendedattributes
=> $attributes
107 my $patron_image = Koha
::Patron
::Images
->find($borrower->{borrowernumber
});
108 $template->param( picture
=> 1 ) if $patron_image;
110 output_html_with_http_headers
$query, $cookie, $template->output;