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