Bug 10453: fix unintended password reset when updating child to adult
[koha.git] / members / moremember.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21
22 =head1 moremember.pl
23
24  script to do a borrower enquiry/bring up borrower details etc
25  Displays all the details about a borrower
26  written 20/12/99 by chris@katipo.co.nz
27  last modified 21/1/2000 by chris@katipo.co.nz
28  modified 31/1/2001 by chris@katipo.co.nz
29    to not allow items on request to be renewed
30
31  needs html removed and to use the C4::Output more, but its tricky
32
33 =cut
34
35 use strict;
36 #use warnings; FIXME - Bug 2505
37 use CGI;
38 use C4::Context;
39 use C4::Auth;
40 use C4::Output;
41 use C4::Members;
42 use C4::Members::Attributes;
43 use C4::Members::AttributeTypes;
44 use C4::Dates;
45 use C4::Reserves;
46 use C4::Circulation;
47 use C4::Koha;
48 use C4::Letters;
49 use C4::Biblio;
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::Borrower::Debarments qw(GetDebarments);
55 #use Smart::Comments;
56 #use Data::Dumper;
57 use DateTime;
58 use Koha::DateUtils;
59
60 use vars qw($debug);
61
62 BEGIN {
63         $debug = $ENV{DEBUG} || 0;
64 }
65
66 my $dbh = C4::Context->dbh;
67
68 my $input = CGI->new;
69 $debug or $debug = $input->param('debug') || 0;
70 my $print = $input->param('print');
71 my $override_limit = $input->param("override_limit") || 0;
72 my @failedrenews = $input->param('failedrenew');
73 my @failedreturns = $input->param('failedreturn');
74 my $error = $input->param('error');
75 my %renew_failed;
76 for my $renew (@failedrenews) { $renew_failed{$renew} = 1; }
77 my %return_failed;
78 for my $failedret (@failedreturns) { $return_failed{$failedret} = 1; }
79
80 my $template_name;
81 my $quickslip = 0;
82
83 my $flagsrequired;
84 if ($print eq "page") {
85     $template_name = "members/moremember-print.tmpl";
86     # circ staff who process checkouts but can't edit
87     # patrons still need to be able to access print view
88     $flagsrequired = { circulate => "circulate_remaining_permissions" };
89 } elsif ($print eq "slip") {
90     $template_name = "members/moremember-receipt.tmpl";
91     # circ staff who process checkouts but can't edit
92     # patrons still need to be able to print receipts
93     $flagsrequired =  { circulate => "circulate_remaining_permissions" };
94 } elsif ($print eq "qslip") {
95     $template_name = "members/moremember-receipt.tmpl";
96     $quickslip = 1;
97     $flagsrequired =  { circulate => "circulate_remaining_permissions" };
98 } elsif ($print eq "brief") {
99     $template_name = "members/moremember-brief.tmpl";
100     $flagsrequired = { borrowers => 1 };
101 } else {
102     $template_name = "members/moremember.tmpl";
103     $flagsrequired = { borrowers => 1 };
104 }
105
106 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
107     {
108         template_name   => $template_name,
109         query           => $input,
110         type            => "intranet",
111         authnotrequired => 0,
112         flagsrequired   => $flagsrequired,
113         debug           => 1,
114     }
115 );
116 my $borrowernumber = $input->param('borrowernumber');
117
118 #start the page and read in includes
119 my $data           = GetMember( 'borrowernumber' => $borrowernumber );
120
121 if ( not defined $data ) {
122     $template->param (unknowuser => 1);
123         output_html_with_http_headers $input, $cookie, $template->output;
124     exit;
125 }
126
127 my $category_type = $data->{'category_type'};
128
129 ### $category_type
130
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->{$_};
134                 unless ($userdate) {
135                         $debug and warn sprintf "Empty \$data{%12s}", $_;
136                         $data->{$_} = '';
137                         next;
138                 }
139                 $userdate = C4::Dates->new($userdate,'iso')->output('syspref');
140                 $data->{$_} = $userdate || '';
141                 $template->param( $_ => $userdate );
142 }
143 $data->{'IS_ADULT'} = ( $data->{'categorycode'} ne 'I' );
144
145 for (qw(gonenoaddress lost borrowernotes)) {
146          $data->{$_} and $template->param(flagged => 1) and last;
147 }
148
149 my $debar = $data->{'debarred'};
150 if ($debar) {
151     $template->param( 'userdebarred' => 1, 'flagged' => 1 );
152     if ( $debar ne "9999-12-31" ) {
153         $template->param( 'userdebarreddate' => C4::Dates::format_date($debar) );
154         $template->param( 'debarredcomment'  => $data->{debarredcomment} );
155     }
156 }
157
158 $data->{'ethnicity'} = fixEthnicity( $data->{'ethnicity'} );
159 $data->{ "sex_".$data->{'sex'}."_p" } = 1;
160
161 my $catcode;
162 if ( $category_type eq 'C') {
163    my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
164    my $cnt = scalar(@$catcodes);
165
166    $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
167    $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
168 }
169
170
171 if ( $data->{'ethnicity'} || $data->{'ethnotes'} ) {
172     $template->param( printethnicityline => 1 );
173 }
174 if ( $category_type eq 'A' || $category_type eq 'I') {
175     $template->param( isguarantee => 1 );
176
177     # FIXME
178     # It looks like the $i is only being returned to handle walking through
179     # the array, which is probably better done as a foreach loop.
180     #
181     my ( $count, $guarantees ) = GetGuarantees( $data->{'borrowernumber'} );
182     my @guaranteedata;
183     for ( my $i = 0 ; $i < $count ; $i++ ) {
184         push(@guaranteedata,
185             {
186                 borrowernumber => $guarantees->[$i]->{'borrowernumber'},
187                 cardnumber     => $guarantees->[$i]->{'cardnumber'},
188                 name           => $guarantees->[$i]->{'firstname'} . " "
189                                 . $guarantees->[$i]->{'surname'}
190             }
191         );
192     }
193     $template->param( guaranteeloop => \@guaranteedata );
194     ( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' || $category_type eq 'I' );
195 }
196 else {
197     if ($data->{'guarantorid'}){
198             my ($guarantor) = GetMember( 'borrowernumber' =>$data->{'guarantorid'});
199                 $template->param(guarantor => 1);
200                 foreach (qw(borrowernumber cardnumber firstname surname)) {        
201                           $template->param("guarantor$_" => $guarantor->{$_});
202         }
203     }
204         if ($category_type eq 'C'){
205                 $template->param('C' => 1);
206         }
207 }
208
209 my %bor;
210 $bor{'borrowernumber'} = $borrowernumber;
211
212 # Converts the branchcode to the branch name
213 my $samebranch;
214 if ( C4::Context->preference("IndependentBranches") ) {
215     my $userenv = C4::Context->userenv;
216     unless ( $userenv->{flags} % 2 == 1 ) {
217         $samebranch = ( $data->{'branchcode'} eq $userenv->{branch} );
218     }
219     $samebranch = 1 if ( $userenv->{flags} % 2 == 1 );
220 }else{
221     $samebranch = 1;
222 }
223 my $branchdetail = GetBranchDetail( $data->{'branchcode'});
224 @{$data}{keys %$branchdetail} = values %$branchdetail; # merge in all branch columns
225
226 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
227 my $lib1 = &GetSortDetails( "Bsort1", $data->{'sort1'} );
228 my $lib2 = &GetSortDetails( "Bsort2", $data->{'sort2'} );
229 $template->param( lib1 => $lib1 ) if ($lib1);
230 $template->param( lib2 => $lib2 ) if ($lib2);
231
232 # Show OPAC privacy preference is system preference is set
233 if ( C4::Context->preference('OPACPrivacy') ) {
234     $template->param( OPACPrivacy => 1);
235     $template->param( "privacy".$data->{'privacy'} => 1);
236 }
237
238 # current issues
239 #
240 my @borrowernumbers = GetMemberRelatives($borrowernumber);
241 my $issue       = GetPendingIssues($borrowernumber);
242 my $relissue    = [];
243 if ( @borrowernumbers ) {
244     $relissue    = GetPendingIssues(@borrowernumbers);
245 }
246 my $roaddetails = &GetRoadTypeDetails( $data->{'streettype'} );
247 my $today       = DateTime->now( time_zone => C4::Context->tz);
248 $today->truncate(to => 'day');
249 my @borrowers_with_issues;
250 my $overdues_exist = 0;
251 my $totalprice = 0;
252
253 my @issuedata = build_issue_data($issue);
254 my @relissuedata = build_issue_data($relissue);
255
256
257 ### ###############################################################################
258 # BUILD HTML
259 # show all reserves of this borrower, and the position of the reservation ....
260 if ($borrowernumber) {
261
262     # new op dev
263     # now we show the status of the borrower's reservations
264     my @borrowerreserv = GetReservesFromBorrowernumber($borrowernumber );
265     my @reservloop;
266     foreach my $num_res (@borrowerreserv) {
267         my %getreserv;
268         my $getiteminfo  = GetBiblioFromItemNumber( $num_res->{'itemnumber'} );
269         my $itemtypeinfo = getitemtypeinfo( $getiteminfo->{'itemtype'} );
270         my ( $transfertwhen, $transfertfrom, $transfertto ) =
271             GetTransfers( $num_res->{'itemnumber'} );
272
273         foreach (qw(waiting transfered nottransfered)) {
274             $getreserv{$_} = 0;
275         }
276         $getreserv{reservedate}  = $num_res->{'reservedate'};
277         foreach (qw(biblionumber title author itemcallnumber )) {
278             $getreserv{$_} = $getiteminfo->{$_};
279         }
280         $getreserv{barcodereserv}  = $getiteminfo->{'barcode'};
281         $getreserv{itemtype}  = $itemtypeinfo->{'description'};
282
283         #               check if we have a waitin status for reservations
284         if ( $num_res->{'found'} eq 'W' ) {
285             $getreserv{color}   = 'reserved';
286             $getreserv{waiting} = 1;
287         }
288
289         #               check transfers with the itemnumber foud in th reservation loop
290         if ($transfertwhen) {
291             $getreserv{color}      = 'transfered';
292             $getreserv{transfered} = 1;
293             $getreserv{datesent}   = C4::Dates->new($transfertwhen, 'iso')->output('syspref') or die "Cannot get new($transfertwhen, 'iso') from C4::Dates";
294             $getreserv{frombranch} = GetBranchName($transfertfrom);
295         }
296
297         if ( ( $getiteminfo->{'holdingbranch'} ne $num_res->{'branchcode'} )
298             and not $transfertwhen )
299         {
300             $getreserv{nottransfered}   = 1;
301             $getreserv{nottransferedby} =
302                 GetBranchName( $getiteminfo->{'holdingbranch'} );
303         }
304         $getreserv{title}          = $getiteminfo->{'title'};
305         $getreserv{subtitle}       = GetRecordValue('subtitle', GetMarcBiblio($getiteminfo->{biblionumber}), GetFrameworkCode($getiteminfo->{biblionumber}));
306
307 #               if we don't have a reserv on item, we put the biblio infos and the waiting position
308         if ( $getiteminfo->{'title'} eq '' ) {
309             my $getbibinfo = GetBiblioData( $num_res->{'biblionumber'} );
310             my $getbibtype = getitemtypeinfo( $getbibinfo->{'itemtype'} );
311             $getreserv{color}           = 'inwait';
312             $getreserv{title}           = $getbibinfo->{'title'};
313             $getreserv{subtitle}        = GetRecordValue('subtitle', GetMarcBiblio($num_res->{biblionumber}), GetFrameworkCode($num_res->{biblionumber}));
314             $getreserv{nottransfered}   = 0;
315             $getreserv{itemtype}        = $getbibtype->{'description'};
316             $getreserv{author}          = $getbibinfo->{'author'};
317             $getreserv{biblionumber}  = $num_res->{'biblionumber'};     
318         }
319         $getreserv{waitingposition} = $num_res->{'priority'};
320         $getreserv{suspend} = $num_res->{'suspend'};
321         $getreserv{suspend_until} = $num_res->{'suspend_until'};
322         $getreserv{expirationdate} = $num_res->{'expirationdate'};
323         $getreserv{reserve_id} = $num_res->{'reserve_id'};
324
325         push( @reservloop, \%getreserv );
326     }
327
328     # return result to the template
329     $template->param( reservloop => \@reservloop,
330         countreserv => scalar @reservloop,
331          );
332 }
333
334 # current alert subscriptions
335 my $alerts = getalert($borrowernumber);
336 foreach (@$alerts) {
337     $_->{ $_->{type} } = 1;
338     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
339 }
340
341 my $candeleteuser;
342 my $userenv = C4::Context->userenv;
343 if($userenv->{flags} % 2 == 1){
344     $candeleteuser = 1;
345 }elsif ( C4::Context->preference("IndependentBranches") ) {
346     $candeleteuser = ( $data->{'branchcode'} eq $userenv->{branch} );
347 }else{
348     if( C4::Auth::getuserflags( $userenv->{flags},$userenv->{number})->{borrowers} ) {
349         $candeleteuser = 1;
350     }else{
351         $candeleteuser = 0;
352     }
353 }
354
355 # check to see if patron's image exists in the database
356 # basically this gives us a template var to condition the display of
357 # patronimage related interface on
358 my ($picture, $dberror) = GetPatronImage($data->{'borrowernumber'});
359 $template->param( picture => 1 ) if $picture;
360
361 my $branch=C4::Context->userenv->{'branch'};
362
363 $template->param(%$data);
364
365 if (C4::Context->preference('ExtendedPatronAttributes')) {
366     my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber);
367     my @classes = uniq( map {$_->{class}} @$attributes );
368     @classes = sort @classes;
369
370     my @attributes_loop;
371     for my $class (@classes) {
372         my @items;
373         for my $attr (@$attributes) {
374             push @items, $attr if $attr->{class} eq $class
375         }
376         my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class;
377         push @attributes_loop, {
378             class => $class,
379             items => \@items,
380             lib   => $lib,
381         };
382     }
383
384     $template->param(
385         ExtendedPatronAttributes => 1,
386         attributes_loop => \@attributes_loop
387     );
388
389     my @types = C4::Members::AttributeTypes::GetAttributeTypes();
390     if (scalar(@types) == 0) {
391         $template->param(no_patron_attribute_types => 1);
392     }
393 }
394
395 if (C4::Context->preference('EnhancedMessagingPreferences')) {
396     C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
397     $template->param(messaging_form_inactive => 1);
398     $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
399     $template->param(SMSnumber     => defined $data->{'smsalertnumber'} ? $data->{'smsalertnumber'} : $data->{'mobile'});
400     $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
401 }
402
403 # in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children) 
404 $template->param( $data->{'categorycode'} => 1 ); 
405 $template->param(
406     detailview => 1,
407     AllowRenewalLimitOverride => C4::Context->preference("AllowRenewalLimitOverride"),
408     CANDELETEUSER    => $candeleteuser,
409     roaddetails     => $roaddetails,
410     borrowernumber  => $borrowernumber,
411     othernames      => $data->{'othernames'},
412     categoryname    => $data->{'description'},
413     was_renewed     => $input->param('was_renewed') ? 1 : 0,
414     branch          => $branch,
415     todaysdate      => C4::Dates->today(),
416     totalprice      => sprintf("%.2f", $totalprice),
417     totaldue        => sprintf("%.2f", $total),
418     totaldue_raw    => $total,
419     issueloop       => @issuedata,
420     relissueloop    => @relissuedata,
421     overdues_exist  => $overdues_exist,
422     error           => $error,
423     StaffMember     => ($category_type eq 'S'),
424     is_child        => ($category_type eq 'C'),
425 #   reserveloop     => \@reservedata,
426     samebranch     => $samebranch,
427     quickslip             => $quickslip,
428     activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
429     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
430     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
431     RoutingSerials => C4::Context->preference('RoutingSerials'),
432     debarments => GetDebarments({ borrowernumber => $borrowernumber }),
433 );
434 $template->param( $error => 1 ) if $error;
435
436 output_html_with_http_headers $input, $cookie, $template->output;
437
438 sub build_issue_data {
439     my $issues = shift;
440
441     my $localissue;
442
443     foreach my $issue ( @{$issues} ) {
444
445         # Getting borrower details
446         my $memberdetails = GetMemberDetails( $issue->{borrowernumber} );
447         $issue->{borrowername} =
448           $memberdetails->{firstname} . ' ' . $memberdetails->{surname};
449         $issue->{cardnumber} = $memberdetails->{cardnumber};
450         my $issuedate;
451         if ($issue->{issuedate} ) {
452            $issuedate = $issue->{issuedate}->clone();
453         }
454         $issue->{subtitle} = GetRecordValue('subtitle', GetMarcBiblio($issue->{biblionumber}), GetFrameworkCode($issue->{biblionumber}));
455         $issue->{issuingbranchname} = GetBranchName($issue->{branchcode});
456         my %row          = %{$issue};
457         $totalprice += $issue->{replacementprice};
458
459         # item lost, damaged loops
460         if ( $row{'itemlost'} ) {
461             my $fw       = GetFrameworkCode( $issue->{biblionumber} );
462             my $category = GetAuthValCode( 'items.itemlost', $fw );
463             my $lostdbh  = C4::Context->dbh;
464             my $sth      = $lostdbh->prepare(
465 "select lib from authorised_values where category=? and authorised_value =? "
466             );
467             $sth->execute( $category, $row{'itemlost'} );
468             my $loststat = $sth->fetchrow;
469             if ($loststat) {
470                 $row{'itemlost'} = $loststat;
471             }
472         }
473         if ( $row{'damaged'} ) {
474             my $fw         = GetFrameworkCode( $issue->{biblionumber} );
475             my $category   = GetAuthValCode( 'items.damaged', $fw );
476             my $damageddbh = C4::Context->dbh;
477             my $sth        = $damageddbh->prepare(
478 "select lib from authorised_values where category=? and authorised_value =? "
479             );
480             $sth->execute( $category, $row{'damaged'} );
481             my $damagedstat = $sth->fetchrow;
482             if ($damagedstat) {
483                 $row{'itemdamaged'} = $damagedstat;
484             }
485         }
486
487         # end lost, damaged
488         if ( $issue->{overdue} ) {
489             $overdues_exist = 1;
490             $row{red} = 1;
491         }
492         if ($issuedate) {
493             $issuedate->truncate( to => 'day' );
494             if ( DateTime->compare( $issuedate, $today ) == 0 ) {
495                 $row{today} = 1;
496             }
497         }
498
499         #find the charge for an item
500         my ( $charge, $itemtype ) =
501           GetIssuingCharges( $issue->{itemnumber}, $borrowernumber );
502
503         my $itemtypeinfo = getitemtypeinfo($itemtype);
504         $row{'itemtype_description'} = $itemtypeinfo->{description};
505         $row{'itemtype_image'}       = $itemtypeinfo->{imageurl};
506
507         $row{'charge'} = sprintf( "%.2f", $charge );
508
509         my ( $renewokay, $renewerror ) =
510           CanBookBeRenewed( $borrowernumber, $issue->{itemnumber},
511             $override_limit );
512         $row{'norenew'} = !$renewokay;
513         $row{'can_confirm'} = ( !$renewokay && $renewerror ne 'on_reserve' );
514         $row{"norenew_reason_$renewerror"} = 1 if $renewerror;
515         $row{renew_failed}  = $renew_failed{ $issue->{itemnumber} };
516         $row{return_failed} = $return_failed{ $issue->{barcode} };
517         push( @{$localissue}, \%row );
518     }
519     return $localissue;
520 }