Bug 14925: (QA followup) tidy code block
[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::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 IsDebarred);
55 use Module::Load;
56 if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
57     load Koha::NorwegianPatronDB, qw( NLGetSyncDataFromBorrowernumber );
58 }
59 #use Smart::Comments;
60 #use Data::Dumper;
61 use DateTime;
62 use Koha::DateUtils;
63 use Koha::Database;
64
65 use vars qw($debug);
66
67 BEGIN {
68         $debug = $ENV{DEBUG} || 0;
69 }
70
71 my $dbh = C4::Context->dbh;
72
73 my $input = CGI->new;
74 $debug or $debug = $input->param('debug') || 0;
75 my $print = $input->param('print');
76
77 my $template_name;
78 my $quickslip = 0;
79
80 my $flagsrequired;
81 if (defined $print and $print eq "page") {
82     $template_name = "members/moremember-print.tt";
83     # circ staff who process checkouts but can't edit
84     # patrons still need to be able to access print view
85     $flagsrequired = { circulate => "circulate_remaining_permissions" };
86 } elsif (defined $print and $print eq "slip") {
87     $template_name = "members/moremember-receipt.tt";
88     # circ staff who process checkouts but can't edit
89     # patrons still need to be able to print receipts
90     $flagsrequired =  { circulate => "circulate_remaining_permissions" };
91 } elsif (defined $print and $print eq "qslip") {
92     $template_name = "members/moremember-receipt.tt";
93     $quickslip = 1;
94     $flagsrequired =  { circulate => "circulate_remaining_permissions" };
95 } elsif (defined $print and $print eq "brief") {
96     $template_name = "members/moremember-brief.tt";
97     $flagsrequired = { borrowers => 1 };
98 } else {
99     $template_name = "members/moremember.tt";
100     $flagsrequired = { borrowers => 1 };
101 }
102
103 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
104     {
105         template_name   => $template_name,
106         query           => $input,
107         type            => "intranet",
108         authnotrequired => 0,
109         flagsrequired   => $flagsrequired,
110         debug           => 1,
111     }
112 );
113 my $borrowernumber = $input->param('borrowernumber');
114 my $error = $input->param('error');
115 $template->param( error => $error ) if ( $error );
116
117 my ( $od, $issue, $fines ) = GetMemberIssuesAndFines($borrowernumber);
118 $template->param( issuecount => $issue );
119
120 my $data = GetMember( 'borrowernumber' => $borrowernumber );
121
122 if ( not defined $data ) {
123     $template->param (unknowuser => 1);
124         output_html_with_http_headers $input, $cookie, $template->output;
125     exit;
126 }
127
128 my $category_type = $data->{'category_type'};
129
130 $debug and printf STDERR "dates (enrolled,expiry,birthdate) raw: (%s, %s, %s)\n", map {$data->{$_}} qw(dateenrolled dateexpiry dateofbirth);
131 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
132     my $userdate = $data->{$_};
133     unless ($userdate) {
134         $debug and warn sprintf "Empty \$data{%12s}", $_;
135         $data->{$_} = '';
136         next;
137     }
138     $userdate = output_pref({ dt => dt_from_string( $userdate ), dateonly => 1 });
139     $data->{$_} = $userdate || '';
140     $template->param( $_ => $userdate );
141 }
142 $data->{'IS_ADULT'} = ( $data->{'categorycode'} ne 'I' );
143
144 for (qw(gonenoaddress lost borrowernotes)) {
145          $data->{$_} and $template->param(flagged => 1) and last;
146 }
147
148 if ( IsDebarred($borrowernumber) ) {
149     $template->param( 'userdebarred' => 1, 'flagged' => 1 );
150     my $debar = $data->{'debarred'};
151     if ( $debar ne "9999-12-31" ) {
152         $template->param( 'userdebarreddate' => output_pref( { dt => dt_from_string( $debar ), dateonly => 1 } ) );
153         $template->param( 'debarredcomment'  => $data->{debarredcomment} );
154     }
155 }
156
157 $data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex};
158
159 my $catcode;
160 if ( $category_type eq 'C') {
161    my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
162    my $cnt = scalar(@$catcodes);
163
164    $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
165    $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
166 }
167
168 my ( $count, $guarantees ) = GetGuarantees( $data->{'borrowernumber'} );
169 if ( $count ) {
170     $template->param( isguarantee => 1 );
171
172     # FIXME
173     # It looks like the $i is only being returned to handle walking through
174     # the array, which is probably better done as a foreach loop.
175     #
176     my @guaranteedata;
177     for ( my $i = 0 ; $i < $count ; $i++ ) {
178         push(@guaranteedata,
179             {
180                 borrowernumber => $guarantees->[$i]->{'borrowernumber'},
181                 cardnumber     => $guarantees->[$i]->{'cardnumber'},
182                 name           => $guarantees->[$i]->{'firstname'} . " "
183                                 . $guarantees->[$i]->{'surname'}
184             }
185         );
186     }
187     $template->param( guaranteeloop => \@guaranteedata );
188 }
189 else {
190     if ($data->{'guarantorid'}){
191             my ($guarantor) = GetMember( 'borrowernumber' =>$data->{'guarantorid'});
192                 $template->param(guarantor => 1);
193                 foreach (qw(borrowernumber cardnumber firstname surname)) {        
194                           $template->param("guarantor$_" => $guarantor->{$_});
195         }
196     }
197         if ($category_type eq 'C'){
198                 $template->param('C' => 1);
199         }
200 }
201
202 $template->param( adultborrower => 1 ) if ( $category_type eq 'A' || $category_type eq 'I' );
203
204 my %bor;
205 $bor{'borrowernumber'} = $borrowernumber;
206
207 # Converts the branchcode to the branch name
208 my $samebranch;
209 if ( C4::Context->preference("IndependentBranches") ) {
210     my $userenv = C4::Context->userenv;
211     if ( C4::Context->IsSuperLibrarian() ) {
212         $samebranch = 1;
213     }
214     else {
215         $samebranch = ( $data->{'branchcode'} eq $userenv->{branch} );
216     }
217 }
218 else {
219     $samebranch = 1;
220 }
221 my $branchdetail = GetBranchDetail( $data->{'branchcode'});
222 @{$data}{keys %$branchdetail} = values %$branchdetail; # merge in all branch columns
223
224 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
225 my $lib1 = &GetSortDetails( "Bsort1", $data->{'sort1'} );
226 my $lib2 = &GetSortDetails( "Bsort2", $data->{'sort2'} );
227 $template->param( lib1 => $lib1 ) if ($lib1);
228 $template->param( lib2 => $lib2 ) if ($lib2);
229
230 # If printing a page, send the account informations to the template
231 if ($print eq "page") {
232     foreach my $accountline (@$accts) {
233         $accountline->{amount} = sprintf '%.2f', $accountline->{amount};
234         $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding};
235
236         if ($accountline->{accounttype} ne 'F' && $accountline->{accounttype} ne 'FU'){
237             $accountline->{printtitle} = 1;
238         }
239     }
240     $template->param( accounts => $accts );
241 }
242
243 # Show OPAC privacy preference is system preference is set
244 if ( C4::Context->preference('OPACPrivacy') ) {
245     $template->param( OPACPrivacy => 1);
246     $template->param( "privacy".$data->{'privacy'} => 1);
247 }
248
249 my @relatives = GetMemberRelatives($borrowernumber);
250 my $relatives_issues_count =
251   Koha::Database->new()->schema()->resultset('Issue')
252   ->count( { borrowernumber => \@relatives } );
253
254 my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $data->{streettype} );
255 my $today       = DateTime->now( time_zone => C4::Context->tz);
256 $today->truncate(to => 'day');
257 my @borrowers_with_issues;
258 my $overdues_exist = 0;
259 my $totalprice = 0;
260
261 ### ###############################################################################
262 # BUILD HTML
263 # show all reserves of this borrower, and the position of the reservation ....
264 if ($borrowernumber) {
265     $template->param(
266         holds_count => Koha::Database->new()->schema()->resultset('Reserve')
267           ->count( { borrowernumber => $borrowernumber } ) );
268 }
269
270 # current alert subscriptions
271 my $alerts = getalert($borrowernumber);
272 foreach (@$alerts) {
273     $_->{ $_->{type} } = 1;
274     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
275 }
276
277 # Add sync data to the user data
278 if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
279     my $sync = NLGetSyncDataFromBorrowernumber( $borrowernumber );
280     if ( $sync ) {
281         $data->{'sync'}       = $sync->sync;
282         $data->{'syncstatus'} = $sync->syncstatus;
283         $data->{'lastsync'}   = $sync->lastsync;
284     }
285 }
286
287 # check to see if patron's image exists in the database
288 # basically this gives us a template var to condition the display of
289 # patronimage related interface on
290 my ($picture, $dberror) = GetPatronImage($data->{'borrowernumber'});
291 $template->param( picture => 1 ) if $picture;
292
293 my $branch=C4::Context->userenv->{'branch'};
294
295 $template->param(%$data);
296
297 if (C4::Context->preference('ExtendedPatronAttributes')) {
298     my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber);
299     my @classes = uniq( map {$_->{class}} @$attributes );
300     @classes = sort @classes;
301
302     my @attributes_loop;
303     for my $class (@classes) {
304         my @items;
305         for my $attr (@$attributes) {
306             push @items, $attr if $attr->{class} eq $class
307         }
308         my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class;
309         push @attributes_loop, {
310             class => $class,
311             items => \@items,
312             lib   => $lib,
313         };
314     }
315
316     $template->param(
317         ExtendedPatronAttributes => 1,
318         attributes_loop => \@attributes_loop
319     );
320
321     my @types = C4::Members::AttributeTypes::GetAttributeTypes();
322     if (scalar(@types) == 0) {
323         $template->param(no_patron_attribute_types => 1);
324     }
325 }
326
327 if (C4::Context->preference('EnhancedMessagingPreferences')) {
328     C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
329     $template->param(messaging_form_inactive => 1);
330     $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
331     $template->param(SMSnumber     => defined $data->{'smsalertnumber'} ? $data->{'smsalertnumber'} : $data->{'mobile'});
332     $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
333 }
334
335 # in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children) 
336 $template->param( $data->{'categorycode'} => 1 ); 
337 $template->param(
338     detailview => 1,
339     AllowRenewalLimitOverride => C4::Context->preference("AllowRenewalLimitOverride"),
340     roadtype        => $roadtype,
341     borrowernumber  => $borrowernumber,
342     othernames      => $data->{'othernames'},
343     categoryname    => $data->{'description'},
344     was_renewed     => $input->param('was_renewed') ? 1 : 0,
345     branch          => $branch,
346     todaysdate      => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
347     totalprice      => sprintf("%.2f", $totalprice),
348     totaldue        => sprintf("%.2f", $total),
349     totaldue_raw    => $total,
350     overdues_exist  => $overdues_exist,
351     StaffMember     => ($category_type eq 'S'),
352     is_child        => ($category_type eq 'C'),
353     samebranch      => $samebranch,
354     quickslip       => $quickslip,
355     activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
356     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
357     SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
358     RoutingSerials => C4::Context->preference('RoutingSerials'),
359     debarments => GetDebarments({ borrowernumber => $borrowernumber }),
360     PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
361     relatives_issues_count => $relatives_issues_count,
362     relatives_borrowernumbers => \@relatives,
363 );
364
365 output_html_with_http_headers $input, $cookie, $template->output;