Bug 14910: Redirect to the circulation module after a renew
[koha.git] / members / moremember.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Copyright 2014 ByWater Solutions
6 #
7 # This file is part of Koha.
8 #
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.
13 #
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.
18 #
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>.
21
22
23 =head1 moremember.pl
24
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
31
32  needs html removed and to use the C4::Output more, but its tricky
33
34 =cut
35
36 use strict;
37 #use warnings; FIXME - Bug 2505
38 use CGI qw ( -utf8 );
39 use C4::Context;
40 use C4::Auth;
41 use C4::Output;
42 use C4::Members;
43 use C4::Members::Attributes;
44 use C4::Members::AttributeTypes;
45 use C4::Dates;
46 use C4::Reserves;
47 use C4::Circulation;
48 use C4::Koha;
49 use C4::Letters;
50 use C4::Biblio;
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);
56 use Module::Load;
57 if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
58     load Koha::NorwegianPatronDB, qw( NLGetSyncDataFromBorrowernumber );
59 }
60 #use Smart::Comments;
61 #use Data::Dumper;
62 use DateTime;
63 use Koha::DateUtils;
64 use Koha::Database;
65
66 use vars qw($debug);
67
68 BEGIN {
69         $debug = $ENV{DEBUG} || 0;
70 }
71
72 my $dbh = C4::Context->dbh;
73
74 my $input = CGI->new;
75 $debug or $debug = $input->param('debug') || 0;
76 my $print = $input->param('print');
77
78 my $template_name;
79 my $quickslip = 0;
80
81 my $flagsrequired;
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";
94     $quickslip = 1;
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 };
99 } else {
100     $template_name = "members/moremember.tt";
101     $flagsrequired = { borrowers => 1 };
102 }
103
104 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
105     {
106         template_name   => $template_name,
107         query           => $input,
108         type            => "intranet",
109         authnotrequired => 0,
110         flagsrequired   => $flagsrequired,
111         debug           => 1,
112     }
113 );
114 my $borrowernumber = $input->param('borrowernumber');
115 my $error = $input->param('error');
116 $template->param( error => $error ) if ( $error );
117
118 my ( $od, $issue, $fines ) = GetMemberIssuesAndFines($borrowernumber);
119 $template->param( issuecount => $issue );
120
121 my $data = GetMember( 'borrowernumber' => $borrowernumber );
122
123 if ( not defined $data ) {
124     $template->param (unknowuser => 1);
125         output_html_with_http_headers $input, $cookie, $template->output;
126     exit;
127 }
128
129 my $category_type = $data->{'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 if ( IsDebarred($borrowernumber) ) {
150     $template->param( 'userdebarred' => 1, 'flagged' => 1 );
151     my $debar = $data->{'debarred'};
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 if defined $data->{sex};
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 my ( $count, $guarantees ) = GetGuarantees( $data->{'borrowernumber'} );
175 if ( $count ) {
176     $template->param( isguarantee => 1 );
177
178     # FIXME
179     # It looks like the $i is only being returned to handle walking through
180     # the array, which is probably better done as a foreach loop.
181     #
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 }
195 else {
196     if ($data->{'guarantorid'}){
197             my ($guarantor) = GetMember( 'borrowernumber' =>$data->{'guarantorid'});
198                 $template->param(guarantor => 1);
199                 foreach (qw(borrowernumber cardnumber firstname surname)) {        
200                           $template->param("guarantor$_" => $guarantor->{$_});
201         }
202     }
203         if ($category_type eq 'C'){
204                 $template->param('C' => 1);
205         }
206 }
207
208 $template->param( adultborrower => 1 ) if ( $category_type eq 'A' || $category_type eq 'I' );
209
210 my %bor;
211 $bor{'borrowernumber'} = $borrowernumber;
212
213 # Converts the branchcode to the branch name
214 my $samebranch;
215 if ( C4::Context->preference("IndependentBranches") ) {
216     my $userenv = C4::Context->userenv;
217     if ( C4::Context->IsSuperLibrarian() ) {
218         $samebranch = 1;
219     }
220     else {
221         $samebranch = ( $data->{'branchcode'} eq $userenv->{branch} );
222     }
223 }
224 else {
225     $samebranch = 1;
226 }
227 my $branchdetail = GetBranchDetail( $data->{'branchcode'});
228 @{$data}{keys %$branchdetail} = values %$branchdetail; # merge in all branch columns
229
230 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
231 my $lib1 = &GetSortDetails( "Bsort1", $data->{'sort1'} );
232 my $lib2 = &GetSortDetails( "Bsort2", $data->{'sort2'} );
233 $template->param( lib1 => $lib1 ) if ($lib1);
234 $template->param( lib2 => $lib2 ) if ($lib2);
235
236 # If printing a page, send the account informations to the template
237 if ($print eq "page") {
238     foreach my $accountline (@$accts) {
239         $accountline->{amount} = sprintf '%.2f', $accountline->{amount};
240         $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding};
241
242         if ($accountline->{accounttype} ne 'F' && $accountline->{accounttype} ne 'FU'){
243             $accountline->{printtitle} = 1;
244         }
245     }
246     $template->param( accounts => $accts );
247 }
248
249 # Show OPAC privacy preference is system preference is set
250 if ( C4::Context->preference('OPACPrivacy') ) {
251     $template->param( OPACPrivacy => 1);
252     $template->param( "privacy".$data->{'privacy'} => 1);
253 }
254
255 my @relatives = GetMemberRelatives($borrowernumber);
256 my $relatives_issues_count =
257   Koha::Database->new()->schema()->resultset('Issue')
258   ->count( { borrowernumber => \@relatives } );
259
260 my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $data->{streettype} );
261 my $today       = DateTime->now( time_zone => C4::Context->tz);
262 $today->truncate(to => 'day');
263 my @borrowers_with_issues;
264 my $overdues_exist = 0;
265 my $totalprice = 0;
266
267 ### ###############################################################################
268 # BUILD HTML
269 # show all reserves of this borrower, and the position of the reservation ....
270 if ($borrowernumber) {
271     $template->param(
272         holds_count => Koha::Database->new()->schema()->resultset('Reserve')
273           ->count( { borrowernumber => $borrowernumber } ) );
274 }
275
276 # current alert subscriptions
277 my $alerts = getalert($borrowernumber);
278 foreach (@$alerts) {
279     $_->{ $_->{type} } = 1;
280     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
281 }
282
283 # Add sync data to the user data
284 if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
285     my $sync = NLGetSyncDataFromBorrowernumber( $borrowernumber );
286     if ( $sync ) {
287         $data->{'sync'}       = $sync->sync;
288         $data->{'syncstatus'} = $sync->syncstatus;
289         $data->{'lastsync'}   = $sync->lastsync;
290     }
291 }
292
293 # check to see if patron's image exists in the database
294 # basically this gives us a template var to condition the display of
295 # patronimage related interface on
296 my ($picture, $dberror) = GetPatronImage($data->{'borrowernumber'});
297 $template->param( picture => 1 ) if $picture;
298
299 my $branch=C4::Context->userenv->{'branch'};
300
301 $template->param(%$data);
302
303 if (C4::Context->preference('ExtendedPatronAttributes')) {
304     my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber);
305     my @classes = uniq( map {$_->{class}} @$attributes );
306     @classes = sort @classes;
307
308     my @attributes_loop;
309     for my $class (@classes) {
310         my @items;
311         for my $attr (@$attributes) {
312             push @items, $attr if $attr->{class} eq $class
313         }
314         my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class;
315         push @attributes_loop, {
316             class => $class,
317             items => \@items,
318             lib   => $lib,
319         };
320     }
321
322     $template->param(
323         ExtendedPatronAttributes => 1,
324         attributes_loop => \@attributes_loop
325     );
326
327     my @types = C4::Members::AttributeTypes::GetAttributeTypes();
328     if (scalar(@types) == 0) {
329         $template->param(no_patron_attribute_types => 1);
330     }
331 }
332
333 if (C4::Context->preference('EnhancedMessagingPreferences')) {
334     C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
335     $template->param(messaging_form_inactive => 1);
336     $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
337     $template->param(SMSnumber     => defined $data->{'smsalertnumber'} ? $data->{'smsalertnumber'} : $data->{'mobile'});
338     $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
339 }
340
341 # in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children) 
342 $template->param( $data->{'categorycode'} => 1 ); 
343 $template->param(
344     detailview => 1,
345     AllowRenewalLimitOverride => C4::Context->preference("AllowRenewalLimitOverride"),
346     roadtype        => $roadtype,
347     borrowernumber  => $borrowernumber,
348     othernames      => $data->{'othernames'},
349     categoryname    => $data->{'description'},
350     was_renewed     => $input->param('was_renewed') ? 1 : 0,
351     branch          => $branch,
352     todaysdate      => C4::Dates->today(),
353     totalprice      => sprintf("%.2f", $totalprice),
354     totaldue        => sprintf("%.2f", $total),
355     totaldue_raw    => $total,
356     overdues_exist  => $overdues_exist,
357     StaffMember     => ($category_type eq 'S'),
358     is_child        => ($category_type eq 'C'),
359     samebranch      => $samebranch,
360     quickslip       => $quickslip,
361     activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
362     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
363     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
364     RoutingSerials => C4::Context->preference('RoutingSerials'),
365     debarments => GetDebarments({ borrowernumber => $borrowernumber }),
366     PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
367     relatives_issues_count => $relatives_issues_count,
368     relatives_borrowernumbers => \@relatives,
369 );
370
371 output_html_with_http_headers $input, $cookie, $template->output;