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
;
59 if ( C4
::Context
->preference('NorwegianPatronDBEnable') && C4
::Context
->preference('NorwegianPatronDBEnable') == 1 ) {
60 load Koha
::NorwegianPatronDB
, qw( NLGetSyncDataFromBorrowernumber );
68 use Koha
::Patron
::Categories
;
74 $debug = $ENV{DEBUG} || 0;
77 my $dbh = C4::Context->dbh;
80 $debug or $debug = $input->param('debug') || 0;
81 my $print = $input->param('print');
87 if (defined $print and $print eq "page") {
88 $template_name = "members/moremember-print.tt";
89 # circ staff who process checkouts but can't edit
90 # patrons still need to be able to access print view
91 $flagsrequired = { circulate => "circulate_remaining_permissions" };
92 } elsif (defined $print and $print eq "slip") {
93 $template_name = "members/moremember-receipt.tt";
94 # circ staff who process checkouts but can't edit
95 # patrons still need to be able to print receipts
96 $flagsrequired = { circulate => "circulate_remaining_permissions" };
97 } elsif (defined $print and $print eq "qslip") {
98 $template_name = "members/moremember-receipt.tt";
100 $flagsrequired = { circulate => "circulate_remaining_permissions" };
101 } elsif (defined $print and $print eq "brief") {
102 $template_name = "members/moremember-brief.tt";
103 $flagsrequired = { borrowers => 'edit_borrowers' };
105 $template_name = "members/moremember.tt";
106 $flagsrequired = { borrowers => 'edit_borrowers' };
109 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
111 template_name => $template_name,
114 authnotrequired => 0,
115 flagsrequired => $flagsrequired,
119 my $borrowernumber = $input->param('borrowernumber');
120 $borrowernumber = HTML::Entities::encode($borrowernumber);
121 my $error = $input->param('error');
122 $template->param( error => $error ) if ( $error );
124 my $patron = Koha::Patrons->find( $borrowernumber );
125 my $userenv = C4::Context->userenv;
126 if ( $userenv and $userenv->{number} ) { # Allow DB user to create a superlibrarian patron
127 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
128 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
131 my $issues = $patron->checkouts;
132 my $balance = $patron->account->balance;
134 issuecount => $issues->count,
138 my $category_type = $patron->category->category_type;
139 my $data = $patron->unblessed;
141 $debug and printf STDERR "dates (enrolled,expiry,birthdate) raw: (%s, %s, %s)\n", map {$data->{$_}} qw(dateenrolled dateexpiry dateofbirth);
142 foreach (qw(dateenrolled dateexpiry dateofbirth)) { # FIXME This should be removed
143 my $userdate = $data->{$_};
145 $debug and warn sprintf "Empty \$data{%12s}", $_;
149 $data->{$_} = dt_from_string
( $userdate );
152 for (qw(gonenoaddress lost borrowernotes)) {
153 $data->{$_} and $template->param(flagged
=> 1) and last;
156 if ( $patron->is_debarred ) {
158 userdebarred
=> 1, # FIXME Template should use patron->is_debarred
160 debarments
=> scalar GetDebarments
({ borrowernumber
=> $borrowernumber }),
162 my $debar = $data->{'debarred'};
163 if ( $debar ne "9999-12-31" ) {
164 $template->param( 'userdebarreddate' => output_pref
( { dt
=> dt_from_string
( $debar ), dateonly
=> 1 } ) );
165 $template->param( 'debarredcomment' => $data->{debarredcomment
} );
169 $data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex
};
171 if ( $patron->is_child ) {
172 my $patron_categories = Koha
::Patron
::Categories
->search_limited({ category_type
=> 'A' }, {order_by
=> ['categorycode']});
173 $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
174 $template->param( 'catcode' => $patron_categories->next->categorycode ) if $patron_categories->count == 1;
178 if ( my $guarantor = $patron->guarantor ) {
179 $template->param( guarantor
=> $guarantor );
180 push @relatives, $guarantor->borrowernumber;
181 push @relatives, $_->borrowernumber for $patron->siblings;
182 } elsif ( $patron->contactname || $patron->contactfirstname ) {
185 firstname
=> $patron->contactfirstname,
186 surname
=> $patron->contactname,
190 my @guarantees = $patron->guarantees;
191 $template->param( guarantees
=> \
@guarantees );
192 push @relatives, $_->borrowernumber for @guarantees;
195 my $relatives_issues_count =
196 Koha
::Database
->new()->schema()->resultset('Issue')
197 ->count( { borrowernumber
=> \
@relatives } );
200 $bor{'borrowernumber'} = $borrowernumber;
202 # Converts the branchcode to the branch name
204 if ( C4
::Context
->preference("IndependentBranches") ) {
205 if ( C4
::Context
->IsSuperLibrarian() ) {
209 $samebranch = ( $data->{'branchcode'} eq $userenv->{branch
} );
215 my $library = Koha
::Libraries
->find( $data->{branchcode
})->unblessed;
216 @
{$data}{keys %$library} = values %$library; # merge in all branch columns # FIXME This is really ugly, we should pass the library instead
218 # If printing a page, send the account informations to the template
219 if ($print eq "page") {
220 my $accts = Koha
::Account
::Lines
->search(
221 { borrowernumber
=> $patron->borrowernumber, amountoutstanding
=> { '>' => 0 } },
222 { order_by
=> { -desc
=> 'accountlines_id' } }
224 $template->param( accounts
=> $accts );
227 # Show OPAC privacy preference is system preference is set
228 if ( C4
::Context
->preference('OPACPrivacy') ) { # FIXME Should be moved the the template
229 $template->param( OPACPrivacy
=> 1);
230 $template->param( "privacy".$data->{'privacy'} => 1);
233 my $today = DateTime
->now( time_zone
=> C4
::Context
->tz);
234 $today->truncate(to
=> 'day');
235 my $overdues_exist = 0;
238 # Calculate and display patron's age
239 if ( $data->{dateofbirth
} ) {
240 $template->param( age
=> Koha
::Patron
->new({ dateofbirth
=> $data->{dateofbirth
} })->get_age );
243 ### ###############################################################################
245 # show all reserves of this borrower, and the position of the reservation ....
246 if ($borrowernumber) {
248 holds_count
=> Koha
::Database
->new()->schema()->resultset('Reserve')
249 ->count( { borrowernumber
=> $borrowernumber } ) );
252 # current alert subscriptions
253 my $alerts = getalert
($borrowernumber);
255 $_->{ $_->{type
} } = 1;
256 $_->{relatedto
} = findrelatedto
( $_->{type
}, $_->{externalid
} );
259 # Add sync data to the user data
260 if ( C4
::Context
->preference('NorwegianPatronDBEnable') && C4
::Context
->preference('NorwegianPatronDBEnable') == 1 ) {
261 my $sync = NLGetSyncDataFromBorrowernumber
( $borrowernumber );
263 $data->{'sync'} = $sync->sync;
264 $data->{'syncstatus'} = $sync->syncstatus;
265 $data->{'lastsync'} = $sync->lastsync;
269 # Generate CSRF token for upload and delete image buttons
271 csrf_token
=> Koha
::Token
->new->generate_csrf({ session_id
=> $input->cookie('CGISESSID'),}),
275 $template->param(%$data); # FIXME This should be removed and used $patron instead, but too many things are processed above
277 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
278 my $attributes = C4
::Members
::Attributes
::GetBorrowerAttributes
($borrowernumber);
279 my @classes = uniq
( map {$_->{class}} @
$attributes );
280 @classes = sort @classes;
283 for my $class (@classes) {
285 for my $attr (@
$attributes) {
286 push @items, $attr if $attr->{class} eq $class
288 my $av = Koha
::AuthorisedValues
->search({ category
=> 'PA_CLASS', authorised_value
=> $class });
289 my $lib = $av->count ?
$av->next->lib : $class;
291 push @attributes_loop, {
299 ExtendedPatronAttributes
=> 1,
300 attributes_loop
=> \
@attributes_loop
303 my @types = C4
::Members
::AttributeTypes
::GetAttributeTypes
();
304 if (scalar(@types) == 0) {
305 $template->param(no_patron_attribute_types
=> 1);
309 if (C4
::Context
->preference('EnhancedMessagingPreferences')) {
310 C4
::Form
::MessagingPreferences
::set_form_values
({ borrowernumber
=> $borrowernumber }, $template);
311 $template->param(messaging_form_inactive
=> 1);
312 $template->param(SMSSendDriver
=> C4
::Context
->preference("SMSSendDriver"));
313 $template->param(TalkingTechItivaPhone
=> C4
::Context
->preference("TalkingTechItivaPhoneNotification"));
316 if ( C4
::Context
->preference("ExportCircHistory") ) {
317 $template->param(csv_profiles
=> [ Koha
::CsvProfiles
->search({ type
=> 'marc' }) ]);
320 my $patron_messages = Koha
::Patron
::Messages
->search(
322 'me.borrowernumber' => $borrowernumber,
326 '+select' => ['manager.surname', 'manager.firstname' ],
327 '+as' => ['manager_surname', 'manager_firstname'],
332 # Display the language description instead of the code
333 # Note that this is certainly wrong
334 my ( $subtag, $region ) = split '-', $patron->lang;
335 my $translated_language = C4
::Languages
::language_get_description
( $subtag, $subtag, 'language' );
337 my $total = $patron->account->balance;
340 translated_language
=> $translated_language,
342 was_renewed
=> scalar $input->param('was_renewed') ?
1 : 0,
343 todaysdate
=> output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 }),
344 totalprice
=> sprintf("%.2f", $totalprice),
345 totaldue
=> sprintf("%.2f", $total),
346 totaldue_raw
=> $total,
347 overdues_exist
=> $overdues_exist,
348 StaffMember
=> $category_type eq 'S',
349 $category_type => 1, # [% IF ( I ) %] = institutional/organisation
350 samebranch
=> $samebranch,
351 quickslip
=> $quickslip,
352 housebound_role
=> scalar $patron->housebound_role,
353 PatronsPerPage
=> C4
::Context
->preference("PatronsPerPage") || 20,
354 relatives_issues_count
=> $relatives_issues_count,
355 relatives_borrowernumbers
=> \
@relatives,
356 patron_messages
=> $patron_messages,
359 output_html_with_http_headers
$input, $cookie, $template->output;