3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Copyright 2014 ByWater Solutions
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 script to do a borrower enquiry/bring up borrower details etc
26 Displays all the details about a borrower
27 written 20/12/99 by chris@katipo.co.nz
28 last modified 21/1/2000 by chris@katipo.co.nz
29 modified 31/1/2001 by chris@katipo.co.nz
30 to not allow items on request to be renewed
32 needs html removed and to use the C4::Output more, but its tricky
43 use C4
::Members
::Attributes
;
44 use C4
::Members
::AttributeTypes
;
50 use C4
::Form
::MessagingPreferences
;
51 use List
::MoreUtils qw
/uniq/;
52 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
53 use Koha
::Account
::Lines
;
54 use Koha
::AuthorisedValues
;
55 use Koha
::CsvProfiles
;
56 use Koha
::Patron
::Debarments
qw(GetDebarments);
57 use Koha
::Patron
::Messages
;
64 use Koha
::Patron
::Categories
;
70 $debug = $ENV{DEBUG} || 0;
73 my $dbh = C4::Context->dbh;
76 $debug or $debug = $input->param('debug') || 0;
77 my $print = $input->param('print');
83 if (defined $print and $print eq "page") {
84 $template_name = "members/moremember-print.tt";
85 # circ staff who process checkouts but can't edit
86 # patrons still need to be able to access print view
87 $flagsrequired = { circulate => "circulate_remaining_permissions" };
88 } elsif (defined $print and $print eq "slip") {
89 $template_name = "members/moremember-receipt.tt";
90 # circ staff who process checkouts but can't edit
91 # patrons still need to be able to print receipts
92 $flagsrequired = { circulate => "circulate_remaining_permissions" };
93 } elsif (defined $print and $print eq "qslip") {
94 $template_name = "members/moremember-receipt.tt";
96 $flagsrequired = { circulate => "circulate_remaining_permissions" };
97 } elsif (defined $print and $print eq "brief") {
98 $template_name = "members/moremember-brief.tt";
99 $flagsrequired = { borrowers => 'edit_borrowers' };
101 $template_name = "members/moremember.tt";
102 $flagsrequired = { borrowers => 'edit_borrowers' };
105 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
107 template_name => $template_name,
110 authnotrequired => 0,
111 flagsrequired => $flagsrequired,
115 my $borrowernumber = $input->param('borrowernumber');
116 $borrowernumber = HTML::Entities::encode($borrowernumber);
117 my $error = $input->param('error');
118 $template->param( error => $error ) if ( $error );
120 my $patron = Koha::Patrons->find( $borrowernumber );
121 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
122 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
124 my $issues = $patron->checkouts;
125 my $balance = $patron->account->balance;
127 issuecount => $issues->count,
131 my $category_type = $patron->category->category_type;
132 my $data = $patron->unblessed;
134 $debug and printf STDERR "dates (enrolled,expiry,birthdate) raw: (%s, %s, %s)\n", map {$data->{$_}} qw(dateenrolled dateexpiry dateofbirth);
135 foreach (qw(dateenrolled dateexpiry dateofbirth)) { # FIXME This should be removed
136 my $userdate = $data->{$_};
138 $debug and warn sprintf "Empty \$data{%12s}", $_;
142 $data->{$_} = dt_from_string
( $userdate );
145 for (qw(gonenoaddress lost borrowernotes)) {
146 $data->{$_} and $template->param(flagged
=> 1) and last;
149 if ( $patron->is_debarred ) {
151 userdebarred
=> 1, # FIXME Template should use patron->is_debarred
153 debarments
=> scalar GetDebarments
({ borrowernumber
=> $borrowernumber }),
155 my $debar = $data->{'debarred'};
156 if ( $debar ne "9999-12-31" ) {
157 $template->param( 'userdebarreddate' => output_pref
( { dt
=> dt_from_string
( $debar ), dateonly
=> 1 } ) );
158 $template->param( 'debarredcomment' => $data->{debarredcomment
} );
162 $data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex
};
165 if ( my $guarantor = $patron->guarantor ) {
166 $template->param( guarantor
=> $guarantor );
167 push @relatives, $guarantor->borrowernumber;
168 push @relatives, $_->borrowernumber for $patron->siblings;
169 } elsif ( $patron->contactname || $patron->contactfirstname ) {
172 firstname
=> $patron->contactfirstname,
173 surname
=> $patron->contactname,
177 my @guarantees = $patron->guarantees;
178 $template->param( guarantees
=> \
@guarantees );
179 push @relatives, $_->borrowernumber for @guarantees;
182 my $relatives_issues_count =
183 Koha
::Database
->new()->schema()->resultset('Issue')
184 ->count( { borrowernumber
=> \
@relatives } );
187 $bor{'borrowernumber'} = $borrowernumber;
189 # Converts the branchcode to the branch name
191 if ( C4
::Context
->preference("IndependentBranches") ) {
192 if ( C4
::Context
->IsSuperLibrarian() ) {
196 my $userenv = C4
::Context
->userenv;
197 $samebranch = ( $data->{'branchcode'} eq $userenv->{branch
} );
203 my $library = Koha
::Libraries
->find( $data->{branchcode
})->unblessed;
204 @
{$data}{keys %$library} = values %$library; # merge in all branch columns # FIXME This is really ugly, we should pass the library instead
206 # If printing a page, send the account informations to the template
207 if (defined $print and $print eq "page") {
208 my $accts = Koha
::Account
::Lines
->search(
209 { borrowernumber
=> $patron->borrowernumber, amountoutstanding
=> { '>' => 0 } },
210 { order_by
=> { -desc
=> 'accountlines_id' } }
212 $template->param( accounts
=> $accts );
215 # Show OPAC privacy preference is system preference is set
216 if ( C4
::Context
->preference('OPACPrivacy') ) { # FIXME Should be moved the the template
217 $template->param( OPACPrivacy
=> 1);
218 $template->param( "privacy".$data->{'privacy'} => 1);
221 my $today = DateTime
->now( time_zone
=> C4
::Context
->tz);
222 $today->truncate(to
=> 'day');
223 my $overdues_exist = 0;
226 # Calculate and display patron's age
227 if ( $data->{dateofbirth
} ) {
228 $template->param( age
=> Koha
::Patron
->new({ dateofbirth
=> $data->{dateofbirth
} })->get_age );
231 ### ###############################################################################
233 # show all reserves of this borrower, and the position of the reservation ....
234 if ($borrowernumber) {
236 holds_count
=> Koha
::Database
->new()->schema()->resultset('Reserve')
237 ->count( { borrowernumber
=> $borrowernumber } ) );
240 # Generate CSRF token for upload and delete image buttons
242 csrf_token
=> Koha
::Token
->new->generate_csrf({ session_id
=> $input->cookie('CGISESSID'),}),
246 $template->param(%$data); # FIXME This should be removed and used $patron instead, but too many things are processed above
248 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
249 my $attributes = C4
::Members
::Attributes
::GetBorrowerAttributes
($borrowernumber);
250 my @classes = uniq
( map {$_->{class}} @
$attributes );
251 @classes = sort @classes;
254 for my $class (@classes) {
256 for my $attr (@
$attributes) {
257 push @items, $attr if $attr->{class} eq $class
259 my $av = Koha
::AuthorisedValues
->search({ category
=> 'PA_CLASS', authorised_value
=> $class });
260 my $lib = $av->count ?
$av->next->lib : $class;
262 push @attributes_loop, {
270 ExtendedPatronAttributes
=> 1,
271 attributes_loop
=> \
@attributes_loop
274 my @types = C4
::Members
::AttributeTypes
::GetAttributeTypes
();
275 if (scalar(@types) == 0) {
276 $template->param(no_patron_attribute_types
=> 1);
280 if (C4
::Context
->preference('EnhancedMessagingPreferences')) {
281 C4
::Form
::MessagingPreferences
::set_form_values
({ borrowernumber
=> $borrowernumber }, $template);
282 $template->param(messaging_form_inactive
=> 1);
283 $template->param(SMSSendDriver
=> C4
::Context
->preference("SMSSendDriver"));
284 $template->param(TalkingTechItivaPhone
=> C4
::Context
->preference("TalkingTechItivaPhoneNotification"));
287 if ( C4
::Context
->preference("ExportCircHistory") ) {
288 $template->param(csv_profiles
=> [ Koha
::CsvProfiles
->search({ type
=> 'marc' }) ]);
291 my $patron_messages = Koha
::Patron
::Messages
->search(
293 'me.borrowernumber' => $borrowernumber,
297 '+select' => ['manager.surname', 'manager.firstname' ],
298 '+as' => ['manager_surname', 'manager_firstname'],
302 if( $patron_messages->count > 0 ){
303 $template->param( patron_messages
=> $patron_messages );
306 # Display the language description instead of the code
307 # Note that this is certainly wrong
308 my ( $subtag, $region ) = split '-', $patron->lang;
309 my $translated_language = C4
::Languages
::language_get_description
( $subtag, $subtag, 'language' );
311 # if the expiry date is before today ie they have expired
312 if ( $patron->is_expired || $patron->is_going_to_expire ) {
318 my $total = $patron->account->balance;
321 translated_language
=> $translated_language,
323 was_renewed
=> scalar $input->param('was_renewed') ?
1 : 0,
324 todaysdate
=> output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 }),
325 totalprice
=> sprintf("%.2f", $totalprice),
326 totaldue
=> sprintf("%.2f", $total),
327 totaldue_raw
=> $total,
328 overdues_exist
=> $overdues_exist,
329 StaffMember
=> $category_type eq 'S',
330 $category_type => 1, # [% IF ( I ) %] = institutional/organisation
331 samebranch
=> $samebranch,
332 quickslip
=> $quickslip,
333 housebound_role
=> scalar $patron->housebound_role,
334 PatronsPerPage
=> C4
::Context
->preference("PatronsPerPage") || 20,
335 relatives_issues_count
=> $relatives_issues_count,
336 relatives_borrowernumbers
=> \
@relatives,
339 output_html_with_http_headers
$input, $cookie, $template->output;