Bug 15208: Followup to reorder words
[koha.git] / members / moremember.pl
blob688215b8c6cefaab7ef4c10c50b36e21c7fe68c3
1 #!/usr/bin/perl
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
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.
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.
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>.
23 =head1 moremember.pl
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
34 =cut
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 );
59 #use Smart::Comments;
60 #use Data::Dumper;
61 use DateTime;
62 use Koha::DateUtils;
63 use Koha::Database;
65 use vars qw($debug);
67 BEGIN {
68 $debug = $ENV{DEBUG} || 0;
71 my $dbh = C4::Context->dbh;
73 my $input = CGI->new;
74 $debug or $debug = $input->param('debug') || 0;
75 my $print = $input->param('print');
77 my $template_name;
78 my $quickslip = 0;
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 };
103 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
105 template_name => $template_name,
106 query => $input,
107 type => "intranet",
108 authnotrequired => 0,
109 flagsrequired => $flagsrequired,
110 debug => 1,
113 my $borrowernumber = $input->param('borrowernumber');
114 my $error = $input->param('error');
115 $template->param( error => $error ) if ( $error );
117 my ( $od, $issue, $fines ) = GetMemberIssuesAndFines($borrowernumber);
118 $template->param( issuecount => $issue );
120 my $data = GetMember( 'borrowernumber' => $borrowernumber );
122 if ( not defined $data ) {
123 $template->param (unknowuser => 1);
124 output_html_with_http_headers $input, $cookie, $template->output;
125 exit;
128 my $category_type = $data->{'category_type'};
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;
138 $template->param( $_ => dt_from_string( $userdate ) );
140 $data->{'IS_ADULT'} = ( $data->{'categorycode'} ne 'I' );
142 for (qw(gonenoaddress lost borrowernotes)) {
143 $data->{$_} and $template->param(flagged => 1) and last;
146 if ( IsDebarred($borrowernumber) ) {
147 $template->param( 'userdebarred' => 1, 'flagged' => 1 );
148 my $debar = $data->{'debarred'};
149 if ( $debar ne "9999-12-31" ) {
150 $template->param( 'userdebarreddate' => output_pref( { dt => dt_from_string( $debar ), dateonly => 1 } ) );
151 $template->param( 'debarredcomment' => $data->{debarredcomment} );
155 $data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex};
157 my $catcode;
158 if ( $category_type eq 'C') {
159 my ( $catcodes, $labels ) = GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
160 my $cnt = scalar(@$catcodes);
162 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
163 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
166 my ( $count, $guarantees ) = GetGuarantees( $data->{'borrowernumber'} );
167 if ( $count ) {
168 $template->param( isguarantee => 1 );
170 # FIXME
171 # It looks like the $i is only being returned to handle walking through
172 # the array, which is probably better done as a foreach loop.
174 my @guaranteedata;
175 for ( my $i = 0 ; $i < $count ; $i++ ) {
176 push(@guaranteedata,
178 borrowernumber => $guarantees->[$i]->{'borrowernumber'},
179 cardnumber => $guarantees->[$i]->{'cardnumber'},
180 name => $guarantees->[$i]->{'firstname'} . " "
181 . $guarantees->[$i]->{'surname'}
185 $template->param( guaranteeloop => \@guaranteedata );
187 else {
188 if ($data->{'guarantorid'}){
189 my ($guarantor) = GetMember( 'borrowernumber' =>$data->{'guarantorid'});
190 $template->param(guarantor => 1);
191 foreach (qw(borrowernumber cardnumber firstname surname)) {
192 $template->param("guarantor$_" => $guarantor->{$_});
195 if ($category_type eq 'C'){
196 $template->param('C' => 1);
200 $template->param( adultborrower => 1 ) if ( $category_type eq 'A' || $category_type eq 'I' );
202 my %bor;
203 $bor{'borrowernumber'} = $borrowernumber;
205 # Converts the branchcode to the branch name
206 my $samebranch;
207 if ( C4::Context->preference("IndependentBranches") ) {
208 my $userenv = C4::Context->userenv;
209 if ( C4::Context->IsSuperLibrarian() ) {
210 $samebranch = 1;
212 else {
213 $samebranch = ( $data->{'branchcode'} eq $userenv->{branch} );
216 else {
217 $samebranch = 1;
219 my $branchdetail = GetBranchDetail( $data->{'branchcode'});
220 @{$data}{keys %$branchdetail} = values %$branchdetail; # merge in all branch columns
222 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
223 my $lib1 = &GetSortDetails( "Bsort1", $data->{'sort1'} );
224 my $lib2 = &GetSortDetails( "Bsort2", $data->{'sort2'} );
225 $template->param( lib1 => $lib1 ) if ($lib1);
226 $template->param( lib2 => $lib2 ) if ($lib2);
228 # If printing a page, send the account informations to the template
229 if ($print eq "page") {
230 foreach my $accountline (@$accts) {
231 $accountline->{amount} = sprintf '%.2f', $accountline->{amount};
232 $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding};
234 if ($accountline->{accounttype} ne 'F' && $accountline->{accounttype} ne 'FU'){
235 $accountline->{printtitle} = 1;
238 $template->param( accounts => $accts );
241 # Show OPAC privacy preference is system preference is set
242 if ( C4::Context->preference('OPACPrivacy') ) {
243 $template->param( OPACPrivacy => 1);
244 $template->param( "privacy".$data->{'privacy'} => 1);
247 my @relatives = GetMemberRelatives($borrowernumber);
248 my $relatives_issues_count =
249 Koha::Database->new()->schema()->resultset('Issue')
250 ->count( { borrowernumber => \@relatives } );
252 my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $data->{streettype} );
253 my $today = DateTime->now( time_zone => C4::Context->tz);
254 $today->truncate(to => 'day');
255 my @borrowers_with_issues;
256 my $overdues_exist = 0;
257 my $totalprice = 0;
259 ### ###############################################################################
260 # BUILD HTML
261 # show all reserves of this borrower, and the position of the reservation ....
262 if ($borrowernumber) {
263 $template->param(
264 holds_count => Koha::Database->new()->schema()->resultset('Reserve')
265 ->count( { borrowernumber => $borrowernumber } ) );
268 # current alert subscriptions
269 my $alerts = getalert($borrowernumber);
270 foreach (@$alerts) {
271 $_->{ $_->{type} } = 1;
272 $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
275 # Add sync data to the user data
276 if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
277 my $sync = NLGetSyncDataFromBorrowernumber( $borrowernumber );
278 if ( $sync ) {
279 $data->{'sync'} = $sync->sync;
280 $data->{'syncstatus'} = $sync->syncstatus;
281 $data->{'lastsync'} = $sync->lastsync;
285 # check to see if patron's image exists in the database
286 # basically this gives us a template var to condition the display of
287 # patronimage related interface on
288 my ($picture, $dberror) = GetPatronImage($data->{'borrowernumber'});
289 $template->param( picture => 1 ) if $picture;
291 my $branch=C4::Context->userenv->{'branch'};
293 $template->param(%$data);
295 if (C4::Context->preference('ExtendedPatronAttributes')) {
296 my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber);
297 my @classes = uniq( map {$_->{class}} @$attributes );
298 @classes = sort @classes;
300 my @attributes_loop;
301 for my $class (@classes) {
302 my @items;
303 for my $attr (@$attributes) {
304 push @items, $attr if $attr->{class} eq $class
306 my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class;
307 push @attributes_loop, {
308 class => $class,
309 items => \@items,
310 lib => $lib,
314 $template->param(
315 ExtendedPatronAttributes => 1,
316 attributes_loop => \@attributes_loop
319 my @types = C4::Members::AttributeTypes::GetAttributeTypes();
320 if (scalar(@types) == 0) {
321 $template->param(no_patron_attribute_types => 1);
325 if (C4::Context->preference('EnhancedMessagingPreferences')) {
326 C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
327 $template->param(messaging_form_inactive => 1);
328 $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
329 $template->param(SMSnumber => defined $data->{'smsalertnumber'} ? $data->{'smsalertnumber'} : $data->{'mobile'});
330 $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
333 # in template <TMPL_IF name="I"> => instutitional (A for Adult, C for children)
334 $template->param( $data->{'categorycode'} => 1 );
335 $template->param(
336 detailview => 1,
337 AllowRenewalLimitOverride => C4::Context->preference("AllowRenewalLimitOverride"),
338 roadtype => $roadtype,
339 borrowernumber => $borrowernumber,
340 othernames => $data->{'othernames'},
341 categoryname => $data->{'description'},
342 was_renewed => $input->param('was_renewed') ? 1 : 0,
343 branch => $branch,
344 todaysdate => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
345 totalprice => sprintf("%.2f", $totalprice),
346 totaldue => sprintf("%.2f", $total),
347 totaldue_raw => $total,
348 overdues_exist => $overdues_exist,
349 StaffMember => ($category_type eq 'S'),
350 is_child => ($category_type eq 'C'),
351 samebranch => $samebranch,
352 quickslip => $quickslip,
353 activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
354 AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
355 SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
356 RoutingSerials => C4::Context->preference('RoutingSerials'),
357 debarments => GetDebarments({ borrowernumber => $borrowernumber }),
358 PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
359 relatives_issues_count => $relatives_issues_count,
360 relatives_borrowernumbers => \@relatives,
363 output_html_with_http_headers $input, $cookie, $template->output;