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