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 under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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
;
51 use C4
::Branch
; # GetBranchName
52 use C4
::Form
::MessagingPreferences
;
53 use List
::MoreUtils qw
/uniq/;
54 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
55 use Koha
::Borrower
::Debarments
qw(GetDebarments IsDebarred);
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');
116 my ( $od, $issue, $fines ) = GetMemberIssuesAndFines($borrowernumber);
117 $template->param( issuecount => $issue );
119 my $data = GetMember( 'borrowernumber' => $borrowernumber );
121 if ( not defined $data ) {
122 $template->param (unknowuser => 1);
123 output_html_with_http_headers $input, $cookie, $template->output;
127 my $category_type = $data->{'category_type'};
129 $debug and printf STDERR "dates (enrolled,expiry,birthdate) raw: (%s, %s, %s)\n", map {$data->{$_}} qw(dateenrolled dateexpiry dateofbirth);
130 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
131 my $userdate = $data->{$_};
133 $debug and warn sprintf "Empty \$data{%12s}", $_;
137 $userdate = C4
::Dates
->new($userdate,'iso')->output('syspref');
138 $data->{$_} = $userdate || '';
139 $template->param( $_ => $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' => C4
::Dates
::format_date
($debar) );
152 $template->param( 'debarredcomment' => $data->{debarredcomment
} );
156 $data->{'ethnicity'} = fixEthnicity
( $data->{'ethnicity'} );
157 $data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex
};
160 if ( $category_type eq 'C') {
161 my ( $catcodes, $labels ) = GetborCatFromCatType
( 'A', 'WHERE category_type = ?' );
162 my $cnt = scalar(@
$catcodes);
164 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
165 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
169 if ( $data->{'ethnicity'} || $data->{'ethnotes'} ) {
170 $template->param( printethnicityline
=> 1 );
172 if ( $category_type eq 'A' || $category_type eq 'I') {
173 $template->param( isguarantee
=> 1 );
176 # It looks like the $i is only being returned to handle walking through
177 # the array, which is probably better done as a foreach loop.
179 my ( $count, $guarantees ) = GetGuarantees
( $data->{'borrowernumber'} );
181 for ( my $i = 0 ; $i < $count ; $i++ ) {
184 borrowernumber
=> $guarantees->[$i]->{'borrowernumber'},
185 cardnumber
=> $guarantees->[$i]->{'cardnumber'},
186 name
=> $guarantees->[$i]->{'firstname'} . " "
187 . $guarantees->[$i]->{'surname'}
191 $template->param( guaranteeloop
=> \
@guaranteedata );
192 ( $template->param( adultborrower
=> 1 ) ) if ( $category_type eq 'A' || $category_type eq 'I' );
195 if ($data->{'guarantorid'}){
196 my ($guarantor) = GetMember
( 'borrowernumber' =>$data->{'guarantorid'});
197 $template->param(guarantor
=> 1);
198 foreach (qw(borrowernumber cardnumber firstname surname)) {
199 $template->param("guarantor$_" => $guarantor->{$_});
202 if ($category_type eq 'C'){
203 $template->param('C' => 1);
208 $bor{'borrowernumber'} = $borrowernumber;
210 # Converts the branchcode to the branch name
212 if ( C4
::Context
->preference("IndependentBranches") ) {
213 my $userenv = C4
::Context
->userenv;
214 if ( C4
::Context
->IsSuperLibrarian() ) {
218 $samebranch = ( $data->{'branchcode'} eq $userenv->{branch
} );
224 my $branchdetail = GetBranchDetail
( $data->{'branchcode'});
225 @
{$data}{keys %$branchdetail} = values %$branchdetail; # merge in all branch columns
227 my ( $total, $accts, $numaccts) = GetMemberAccountRecords
( $borrowernumber );
228 my $lib1 = &GetSortDetails
( "Bsort1", $data->{'sort1'} );
229 my $lib2 = &GetSortDetails
( "Bsort2", $data->{'sort2'} );
230 $template->param( lib1
=> $lib1 ) if ($lib1);
231 $template->param( lib2
=> $lib2 ) if ($lib2);
233 # If printing a page, send the account informations to the template
234 if ($print eq "page") {
235 foreach my $accountline (@
$accts) {
236 $accountline->{amount
} = sprintf '%.2f', $accountline->{amount
};
237 $accountline->{amountoutstanding
} = sprintf '%.2f', $accountline->{amountoutstanding
};
239 if ($accountline->{accounttype
} ne 'F' && $accountline->{accounttype
} ne 'FU'){
240 $accountline->{printtitle
} = 1;
243 $template->param( accounts
=> $accts );
246 # Show OPAC privacy preference is system preference is set
247 if ( C4
::Context
->preference('OPACPrivacy') ) {
248 $template->param( OPACPrivacy
=> 1);
249 $template->param( "privacy".$data->{'privacy'} => 1);
252 my @relatives = GetMemberRelatives
($borrowernumber);
253 my $relatives_issues_count =
254 Koha
::Database
->new()->schema()->resultset('Issue')
255 ->count( { borrowernumber
=> \
@relatives } );
257 my $roadtype = C4
::Koha
::GetAuthorisedValueByCode
( 'ROADTYPE', $data->{streettype
} );
258 my $today = DateTime
->now( time_zone
=> C4
::Context
->tz);
259 $today->truncate(to
=> 'day');
260 my @borrowers_with_issues;
261 my $overdues_exist = 0;
264 ### ###############################################################################
266 # show all reserves of this borrower, and the position of the reservation ....
267 if ($borrowernumber) {
269 holds_count
=> Koha
::Database
->new()->schema()->resultset('Reserve')
270 ->count( { borrowernumber
=> $borrowernumber } ) );
273 # current alert subscriptions
274 my $alerts = getalert
($borrowernumber);
276 $_->{ $_->{type
} } = 1;
277 $_->{relatedto
} = findrelatedto
( $_->{type
}, $_->{externalid
} );
281 my $userenv = C4
::Context
->userenv;
282 if ( C4
::Context
->IsSuperLibrarian() ) {
285 elsif ( C4
::Context
->preference("IndependentBranches") ) {
286 $candeleteuser = ( $data->{'branchcode'} eq $userenv->{branch
} );
289 if ( C4
::Auth
::getuserflags
( $userenv->{flags
}, $userenv->{number
} )->{borrowers
} ) {
297 # Add sync data to the user data
298 if ( C4
::Context
->preference('NorwegianPatronDBEnable') && C4
::Context
->preference('NorwegianPatronDBEnable') == 1 ) {
299 my $sync = NLGetSyncDataFromBorrowernumber
( $borrowernumber );
301 $data->{'sync'} = $sync->sync;
302 $data->{'syncstatus'} = $sync->syncstatus;
303 $data->{'lastsync'} = $sync->lastsync;
307 # check to see if patron's image exists in the database
308 # basically this gives us a template var to condition the display of
309 # patronimage related interface on
310 my ($picture, $dberror) = GetPatronImage
($data->{'borrowernumber'});
311 $template->param( picture
=> 1 ) if $picture;
313 my $branch=C4
::Context
->userenv->{'branch'};
315 $template->param(%$data);
317 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
318 my $attributes = C4
::Members
::Attributes
::GetBorrowerAttributes
($borrowernumber);
319 my @classes = uniq
( map {$_->{class}} @
$attributes );
320 @classes = sort @classes;
323 for my $class (@classes) {
325 for my $attr (@
$attributes) {
326 push @items, $attr if $attr->{class} eq $class
328 my $lib = GetAuthorisedValueByCode
( 'PA_CLASS', $class ) || $class;
329 push @attributes_loop, {
337 ExtendedPatronAttributes
=> 1,
338 attributes_loop
=> \
@attributes_loop
341 my @types = C4
::Members
::AttributeTypes
::GetAttributeTypes
();
342 if (scalar(@types) == 0) {
343 $template->param(no_patron_attribute_types
=> 1);
347 if (C4
::Context
->preference('EnhancedMessagingPreferences')) {
348 C4
::Form
::MessagingPreferences
::set_form_values
({ borrowernumber
=> $borrowernumber }, $template);
349 $template->param(messaging_form_inactive
=> 1);
350 $template->param(SMSSendDriver
=> C4
::Context
->preference("SMSSendDriver"));
351 $template->param(SMSnumber
=> defined $data->{'smsalertnumber'} ?
$data->{'smsalertnumber'} : $data->{'mobile'});
352 $template->param(TalkingTechItivaPhone
=> C4
::Context
->preference("TalkingTechItivaPhoneNotification"));
355 # Computes full borrower address
356 my $address = $data->{'streetnumber'} . " $roadtype " . $data->{'address'};
358 # in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children)
359 $template->param( $data->{'categorycode'} => 1 );
362 AllowRenewalLimitOverride
=> C4
::Context
->preference("AllowRenewalLimitOverride"),
363 CANDELETEUSER
=> $candeleteuser,
364 roadtype
=> $roadtype,
365 borrowernumber
=> $borrowernumber,
366 othernames
=> $data->{'othernames'},
367 categoryname
=> $data->{'description'},
368 was_renewed
=> $input->param('was_renewed') ?
1 : 0,
370 todaysdate
=> C4
::Dates
->today(),
371 totalprice
=> sprintf("%.2f", $totalprice),
372 totaldue
=> sprintf("%.2f", $total),
373 totaldue_raw
=> $total,
374 overdues_exist
=> $overdues_exist,
375 StaffMember
=> ($category_type eq 'S'),
376 is_child
=> ($category_type eq 'C'),
377 samebranch
=> $samebranch,
378 quickslip
=> $quickslip,
379 activeBorrowerRelationship
=> (C4
::Context
->preference('borrowerRelationship') ne ''),
380 AutoResumeSuspendedHolds
=> C4
::Context
->preference('AutoResumeSuspendedHolds'),
381 SuspendHoldsIntranet
=> C4
::Context
->preference('SuspendHoldsIntranet'),
382 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
383 debarments
=> GetDebarments
({ borrowernumber
=> $borrowernumber }),
384 PatronsPerPage
=> C4
::Context
->preference("PatronsPerPage") || 20,
385 relatives_issues_count
=> $relatives_issues_count,
386 relatives_borrowernumbers
=> \
@relatives,
390 output_html_with_http_headers
$input, $cookie, $template->output;