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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #use warnings; FIXME - Bug 2505
24 use C4
::Auth qw
/:DEFAULT get_session/;
25 use C4
::Branch
; # GetBranches
27 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
34 my $sessionID = $query->cookie("CGISESSID") ;
35 my $session = get_session
($sessionID);
37 # branch are now defined by the userenv
38 # but first we have to check if someone has tried to change them
40 my $branch = $query->param('branch');
42 # update our session so the userenv is updated
43 $session->param('branch', $branch);
44 $session->param('branchname', GetBranchName
($branch));
47 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
49 template_name
=> 'members/routing-lists.tt',
53 flagsrequired
=> { circulate
=> 'circulate_remaining_permissions' },
57 my $branches = GetBranches
();
59 my $findborrower = $query->param('findborrower');
60 $findborrower =~ s
|,| |g
;
62 my $borrowernumber = $query->param('borrowernumber');
64 $branch = C4
::Context
->userenv->{'branch'};
66 # get the borrower information.....
68 if ($borrowernumber) {
69 $borrower = GetMemberDetails
( $borrowernumber, 0 );
73 ##################################################################################
75 # I'm trying to show the title of subscriptions where the borrowernumber is attached via a routing list
77 if ($borrowernumber) {
80 my @borrowerSubscriptions;
81 ($count, @borrowerSubscriptions) = GetSubscriptionsFromBorrower
($borrowernumber );
84 foreach my $num_res (@borrowerSubscriptions) {
86 $getSubscrip{subscriptionid
} = $num_res->{'subscriptionid'};
87 $getSubscrip{title
} = $num_res->{'title'};
88 $getSubscrip{borrowernumber
} = $num_res->{'borrowernumber'};
89 push( @subscripLoop, \
%getSubscrip );
93 countSubscrip
=> scalar @subscripLoop,
94 subscripLoop
=> \
@subscripLoop,
98 $template->param( adultborrower
=> 1 ) if ( $borrower->{'category_type'} eq 'A' );
101 ##################################################################################
104 # Computes full borrower address
105 my $roadtype = C4
::Koha
::GetAuthorisedValueByCode
( 'ROADTYPE', $borrower->{streettype
} );
106 my $address = $borrower->{'streetnumber'} . " $roadtype " . $borrower->{'address'};
110 findborrower
=> $findborrower,
111 borrower
=> $borrower,
112 borrowernumber
=> $borrowernumber,
114 branchname
=> GetBranchName
($borrower->{'branchcode'}),
115 title
=> $borrower->{'title'},
116 initials
=> $borrower->{'initials'},
117 firstname
=> $borrower->{'firstname'},
118 surname
=> $borrower->{'surname'},
119 othernames
=> $borrower->{'othernames'},
120 categorycode
=> $borrower->{'categorycode'},
121 categoryname
=> $borrower->{description
},
123 address2
=> $borrower->{'address2'},
124 phone
=> $borrower->{'phone'},
125 phonepro
=> $borrower->{'phonepro'},
126 mobile
=> $borrower->{'mobile'},
127 email
=> $borrower->{'email'},
128 emailpro
=> $borrower->{'emailpro'},
129 borrowernotes
=> $borrower->{'borrowernotes'},
130 city
=> $borrower->{'city'},
131 state => $borrower->{'state'},
132 zipcode
=> $borrower->{'zipcode'},
133 country
=> $borrower->{'country'},
134 cardnumber
=> $borrower->{'cardnumber'},
135 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
138 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
139 my $attributes = GetBorrowerAttributes
($borrowernumber);
141 ExtendedPatronAttributes
=> 1,
142 extendedattributes
=> $attributes
146 my ($picture, $dberror) = GetPatronImage
($borrower->{'borrowernumber'});
147 $template->param( picture
=> 1 ) if $picture;
149 output_html_with_http_headers
$query, $cookie, $template->output;