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
37 #use warnings; FIXME - Bug 2505
43 use C4
::Members
::Attributes
;
44 use C4
::Members
::AttributeTypes
;
50 use C4
::Branch
; # GetBranchName
51 use C4
::Form
::MessagingPreferences
;
52 use List
::MoreUtils qw
/uniq/;
53 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
54 use Koha
::Patron
::Debarments
qw(GetDebarments IsDebarred);
55 use Koha
::Patron
::Images
;
57 if ( C4
::Context
->preference('NorwegianPatronDBEnable') && C4
::Context
->preference('NorwegianPatronDBEnable') == 1 ) {
58 load Koha
::NorwegianPatronDB
, qw( NLGetSyncDataFromBorrowernumber );
69 $debug = $ENV{DEBUG} || 0;
72 my $dbh = C4::Context->dbh;
75 $debug or $debug = $input->param('debug') || 0;
76 my $print = $input->param('print');
82 if (defined $print and $print eq "page") {
83 $template_name = "members/moremember-print.tt";
84 # circ staff who process checkouts but can't edit
85 # patrons still need to be able to access print view
86 $flagsrequired = { circulate => "circulate_remaining_permissions" };
87 } elsif (defined $print and $print eq "slip") {
88 $template_name = "members/moremember-receipt.tt";
89 # circ staff who process checkouts but can't edit
90 # patrons still need to be able to print receipts
91 $flagsrequired = { circulate => "circulate_remaining_permissions" };
92 } elsif (defined $print and $print eq "qslip") {
93 $template_name = "members/moremember-receipt.tt";
95 $flagsrequired = { circulate => "circulate_remaining_permissions" };
96 } elsif (defined $print and $print eq "brief") {
97 $template_name = "members/moremember-brief.tt";
98 $flagsrequired = { borrowers => 1 };
100 $template_name = "members/moremember.tt";
101 $flagsrequired = { borrowers => 1 };
104 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
106 template_name => $template_name,
109 authnotrequired => 0,
110 flagsrequired => $flagsrequired,
114 my $borrowernumber = $input->param('borrowernumber');
115 my $error = $input->param('error');
116 $template->param( error => $error ) if ( $error );
118 my ( $od, $issue, $fines ) = GetMemberIssuesAndFines($borrowernumber);
119 $template->param( issuecount => $issue, fines => $fines );
121 my $data = GetMember( 'borrowernumber' => $borrowernumber );
123 if ( not defined $data ) {
124 $template->param (unknowuser => 1);
125 output_html_with_http_headers $input, $cookie, $template->output;
129 my $category_type = $data->{'category_type'};
131 $debug and printf STDERR "dates (enrolled,expiry,birthdate) raw: (%s, %s, %s)\n", map {$data->{$_}} qw(dateenrolled dateexpiry dateofbirth);
132 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
133 my $userdate = $data->{$_};
135 $debug and warn sprintf "Empty \$data{%12s}", $_;
139 $template->param( $_ => dt_from_string
( $userdate ) );
141 $data->{'IS_ADULT'} = ( $data->{'categorycode'} ne 'I' );
143 for (qw(gonenoaddress lost borrowernotes)) {
144 $data->{$_} and $template->param(flagged
=> 1) and last;
147 if ( IsDebarred
($borrowernumber) ) {
148 $template->param( 'userdebarred' => 1, 'flagged' => 1 );
149 my $debar = $data->{'debarred'};
150 if ( $debar ne "9999-12-31" ) {
151 $template->param( 'userdebarreddate' => output_pref
( { dt
=> dt_from_string
( $debar ), dateonly
=> 1 } ) );
152 $template->param( 'debarredcomment' => $data->{debarredcomment
} );
156 $data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex
};
158 if ( $category_type eq 'C') {
159 my ( $catcodes, $labels ) = GetborCatFromCatType
( 'A', 'WHERE category_type = ?' );
160 my $cnt = scalar(@
$catcodes);
162 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
163 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
166 my $patron = Koha
::Patrons
->find($data->{borrowernumber
});
168 if ( my $guarantor = $patron->guarantor ) {
169 $template->param( guarantor
=> $guarantor );
170 push @relatives, $guarantor->borrowernumber;
171 push @relatives, $_->borrowernumber for $patron->siblings;
172 } elsif ( $patron->contactname || $patron->contactfirstname ) {
175 firstname
=> $patron->contactfirstname,
176 surname
=> $patron->contactname,
180 my @guarantees = $patron->guarantees;
181 $template->param( guarantees
=> \
@guarantees );
182 push @relatives, $_->borrowernumber for @guarantees;
185 my $relatives_issues_count =
186 Koha
::Database
->new()->schema()->resultset('Issue')
187 ->count( { borrowernumber
=> \
@relatives } );
189 $template->param( adultborrower
=> 1 ) if ( $category_type eq 'A' || $category_type eq 'I' );
192 $bor{'borrowernumber'} = $borrowernumber;
194 # Converts the branchcode to the branch name
196 if ( C4
::Context
->preference("IndependentBranches") ) {
197 my $userenv = C4
::Context
->userenv;
198 if ( C4
::Context
->IsSuperLibrarian() ) {
202 $samebranch = ( $data->{'branchcode'} eq $userenv->{branch
} );
208 my $library = Koha
::Libraries
->find( $data->{branchcode
})->unblessed;
209 @
{$data}{keys %$library} = values %$library; # merge in all branch columns
211 my ( $total, $accts, $numaccts) = GetMemberAccountRecords
( $borrowernumber );
212 my $lib1 = &GetSortDetails
( "Bsort1", $data->{'sort1'} );
213 my $lib2 = &GetSortDetails
( "Bsort2", $data->{'sort2'} );
214 $template->param( lib1
=> $lib1 ) if ($lib1);
215 $template->param( lib2
=> $lib2 ) if ($lib2);
217 # If printing a page, send the account informations to the template
218 if ($print eq "page") {
219 foreach my $accountline (@
$accts) {
220 $accountline->{amount
} = sprintf '%.2f', $accountline->{amount
};
221 $accountline->{amountoutstanding
} = sprintf '%.2f', $accountline->{amountoutstanding
};
223 if ($accountline->{accounttype
} ne 'F' && $accountline->{accounttype
} ne 'FU'){
224 $accountline->{printtitle
} = 1;
227 $template->param( accounts
=> $accts );
230 # Show OPAC privacy preference is system preference is set
231 if ( C4
::Context
->preference('OPACPrivacy') ) {
232 $template->param( OPACPrivacy
=> 1);
233 $template->param( "privacy".$data->{'privacy'} => 1);
236 my $today = DateTime
->now( time_zone
=> C4
::Context
->tz);
237 $today->truncate(to
=> 'day');
238 my $overdues_exist = 0;
241 # Calculate and display patron's age
242 my $dateofbirth = $data->{ 'dateofbirth' };
243 my $age = GetAge
($dateofbirth);
244 $template->param( age
=> $age );
246 ### ###############################################################################
248 # show all reserves of this borrower, and the position of the reservation ....
249 if ($borrowernumber) {
251 holds_count
=> Koha
::Database
->new()->schema()->resultset('Reserve')
252 ->count( { borrowernumber
=> $borrowernumber } ) );
255 # current alert subscriptions
256 my $alerts = getalert
($borrowernumber);
258 $_->{ $_->{type
} } = 1;
259 $_->{relatedto
} = findrelatedto
( $_->{type
}, $_->{externalid
} );
262 # Add sync data to the user data
263 if ( C4
::Context
->preference('NorwegianPatronDBEnable') && C4
::Context
->preference('NorwegianPatronDBEnable') == 1 ) {
264 my $sync = NLGetSyncDataFromBorrowernumber
( $borrowernumber );
266 $data->{'sync'} = $sync->sync;
267 $data->{'syncstatus'} = $sync->syncstatus;
268 $data->{'lastsync'} = $sync->lastsync;
272 # check to see if patron's image exists in the database
273 # basically this gives us a template var to condition the display of
274 # patronimage related interface on
275 my $patron_image = Koha
::Patron
::Images
->find($data->{borrowernumber
});
276 $template->param( picture
=> 1 ) if $patron_image;
278 my $branch=C4
::Context
->userenv->{'branch'};
280 $template->param(%$data);
282 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
283 my $attributes = C4
::Members
::Attributes
::GetBorrowerAttributes
($borrowernumber);
284 my @classes = uniq
( map {$_->{class}} @
$attributes );
285 @classes = sort @classes;
288 for my $class (@classes) {
290 for my $attr (@
$attributes) {
291 push @items, $attr if $attr->{class} eq $class
293 my $lib = GetAuthorisedValueByCode
( 'PA_CLASS', $class ) || $class;
294 push @attributes_loop, {
302 ExtendedPatronAttributes
=> 1,
303 attributes_loop
=> \
@attributes_loop
306 my @types = C4
::Members
::AttributeTypes
::GetAttributeTypes
();
307 if (scalar(@types) == 0) {
308 $template->param(no_patron_attribute_types
=> 1);
312 if (C4
::Context
->preference('EnhancedMessagingPreferences')) {
313 C4
::Form
::MessagingPreferences
::set_form_values
({ borrowernumber
=> $borrowernumber }, $template);
314 $template->param(messaging_form_inactive
=> 1);
315 $template->param(SMSSendDriver
=> C4
::Context
->preference("SMSSendDriver"));
316 $template->param(SMSnumber
=> $data->{'smsalertnumber'});
317 $template->param(TalkingTechItivaPhone
=> C4
::Context
->preference("TalkingTechItivaPhoneNotification"));
320 # in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children)
321 $template->param( $data->{'categorycode'} => 1 );
324 borrowernumber
=> $borrowernumber,
325 othernames
=> $data->{'othernames'},
326 categoryname
=> $data->{'description'},
327 was_renewed
=> scalar $input->param('was_renewed') ?
1 : 0,
329 todaysdate
=> output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 }),
330 totalprice
=> sprintf("%.2f", $totalprice),
331 totaldue
=> sprintf("%.2f", $total),
332 totaldue_raw
=> $total,
333 overdues_exist
=> $overdues_exist,
334 StaffMember
=> ($category_type eq 'S'),
335 is_child
=> ($category_type eq 'C'),
336 samebranch
=> $samebranch,
337 quickslip
=> $quickslip,
338 privacy_guarantor_checkouts
=> $data->{'privacy_guarantor_checkouts'},
339 activeBorrowerRelationship
=> (C4
::Context
->preference('borrowerRelationship') ne ''),
340 AutoResumeSuspendedHolds
=> C4
::Context
->preference('AutoResumeSuspendedHolds'),
341 SuspendHoldsIntranet
=> C4
::Context
->preference('SuspendHoldsIntranet'),
342 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
343 debarments
=> GetDebarments
({ borrowernumber
=> $borrowernumber }),
344 PatronsPerPage
=> C4
::Context
->preference("PatronsPerPage") || 20,
345 relatives_issues_count
=> $relatives_issues_count,
346 relatives_borrowernumbers
=> \
@relatives,
349 output_html_with_http_headers
$input, $cookie, $template->output;