Bug 19843: (bug 15839 follow-up) Set reviews.datereviewed when the review is made
[koha.git] / members / moremember.pl
blob2a54cbeaf2f1021348bb9a62a78f25c8ea8963e4
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 HTML::Entities;
40 use C4::Context;
41 use C4::Auth;
42 use C4::Output;
43 use C4::Members;
44 use C4::Members::Attributes;
45 use C4::Members::AttributeTypes;
46 use C4::Reserves;
47 use C4::Circulation;
48 use C4::Koha;
49 use C4::Letters;
50 use C4::Biblio;
51 use C4::Form::MessagingPreferences;
52 use List::MoreUtils qw/uniq/;
53 use C4::Members::Attributes qw(GetBorrowerAttributes);
54 use Koha::AuthorisedValues;
55 use Koha::CsvProfiles;
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::Patrons;
68 use Koha::Patron::Categories;
69 use Koha::Token;
71 use vars qw($debug);
73 BEGIN {
74 $debug = $ENV{DEBUG} || 0;
77 my $dbh = C4::Context->dbh;
79 my $input = CGI->new;
80 $debug or $debug = $input->param('debug') || 0;
81 my $print = $input->param('print');
83 my $template_name;
84 my $quickslip = 0;
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 };
109 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
111 template_name => $template_name,
112 query => $input,
113 type => "intranet",
114 authnotrequired => 0,
115 flagsrequired => $flagsrequired,
116 debug => 1,
119 my $borrowernumber = $input->param('borrowernumber');
120 $borrowernumber = HTML::Entities::encode($borrowernumber);
121 my $error = $input->param('error');
122 $template->param( error => $error ) if ( $error );
124 my $patron = Koha::Patrons->find($borrowernumber);
125 unless ( $patron ) {
126 $template->param (unknowuser => 1);
127 output_html_with_http_headers $input, $cookie, $template->output;
128 exit;
131 my $issues = $patron->checkouts;
132 my $balance = $patron->account->balance;
133 $template->param(
134 issuecount => $issues->count,
135 fines => $balance,
138 my $category_type = $patron->category->category_type;
139 my $data = $patron->unblessed;
141 $debug and printf STDERR "dates (enrolled,expiry,birthdate) raw: (%s, %s, %s)\n", map {$data->{$_}} qw(dateenrolled dateexpiry dateofbirth);
142 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
143 my $userdate = $data->{$_};
144 unless ($userdate) {
145 $debug and warn sprintf "Empty \$data{%12s}", $_;
146 $data->{$_} = '';
147 next;
149 $data->{$_} = dt_from_string( $userdate );
151 $data->{'IS_ADULT'} = ( $data->{'categorycode'} ne 'I' );
153 for (qw(gonenoaddress lost borrowernotes)) {
154 $data->{$_} and $template->param(flagged => 1) and last;
157 if ( $patron->is_debarred ) {
158 $template->param(
159 userdebarred => 1,
160 flagged => 1,
161 debarments => scalar GetDebarments({ borrowernumber => $borrowernumber }),
163 my $debar = $data->{'debarred'};
164 if ( $debar ne "9999-12-31" ) {
165 $template->param( 'userdebarreddate' => output_pref( { dt => dt_from_string( $debar ), dateonly => 1 } ) );
166 $template->param( 'debarredcomment' => $data->{debarredcomment} );
170 $data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex};
172 if ( $category_type eq 'C') {
173 my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
174 $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
175 $template->param( 'catcode' => $patron_categories->next ) if $patron_categories->count == 1;
178 my @relatives;
179 if ( my $guarantor = $patron->guarantor ) {
180 $template->param( guarantor => $guarantor );
181 push @relatives, $guarantor->borrowernumber;
182 push @relatives, $_->borrowernumber for $patron->siblings;
183 } elsif ( $patron->contactname || $patron->contactfirstname ) {
184 $template->param(
185 guarantor => {
186 firstname => $patron->contactfirstname,
187 surname => $patron->contactname,
190 } else {
191 my @guarantees = $patron->guarantees;
192 $template->param( guarantees => \@guarantees );
193 push @relatives, $_->borrowernumber for @guarantees;
196 my $relatives_issues_count =
197 Koha::Database->new()->schema()->resultset('Issue')
198 ->count( { borrowernumber => \@relatives } );
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 $library = Koha::Libraries->find( $data->{branchcode})->unblessed;
220 @{$data}{keys %$library} = values %$library; # merge in all branch columns
222 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
224 # If printing a page, send the account informations to the template
225 if ($print eq "page") {
226 foreach my $accountline (@$accts) {
227 $accountline->{amount} = sprintf '%.2f', $accountline->{amount};
228 $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding};
230 if ($accountline->{accounttype} ne 'F' && $accountline->{accounttype} ne 'FU'){
231 $accountline->{printtitle} = 1;
234 $template->param( accounts => $accts );
237 # Show OPAC privacy preference is system preference is set
238 if ( C4::Context->preference('OPACPrivacy') ) {
239 $template->param( OPACPrivacy => 1);
240 $template->param( "privacy".$data->{'privacy'} => 1);
243 my $today = DateTime->now( time_zone => C4::Context->tz);
244 $today->truncate(to => 'day');
245 my $overdues_exist = 0;
246 my $totalprice = 0;
248 # Calculate and display patron's age
249 if ( $data->{dateofbirth} ) {
250 $template->param( age => Koha::Patron->new({ dateofbirth => $data->{dateofbirth} })->get_age );
253 ### ###############################################################################
254 # BUILD HTML
255 # show all reserves of this borrower, and the position of the reservation ....
256 if ($borrowernumber) {
257 $template->param(
258 holds_count => Koha::Database->new()->schema()->resultset('Reserve')
259 ->count( { borrowernumber => $borrowernumber } ) );
262 # current alert subscriptions
263 my $alerts = getalert($borrowernumber);
264 foreach (@$alerts) {
265 $_->{ $_->{type} } = 1;
266 $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
269 # Add sync data to the user data
270 if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
271 my $sync = NLGetSyncDataFromBorrowernumber( $borrowernumber );
272 if ( $sync ) {
273 $data->{'sync'} = $sync->sync;
274 $data->{'syncstatus'} = $sync->syncstatus;
275 $data->{'lastsync'} = $sync->lastsync;
279 # check to see if patron's image exists in the database
280 # basically this gives us a template var to condition the display of
281 # patronimage related interface on
282 $template->param( picture => 1 ) if $patron->image;
283 # Generate CSRF token for upload and delete image buttons
284 $template->param(
285 csrf_token => Koha::Token->new->generate_csrf({ session_id => $input->cookie('CGISESSID'),}),
289 $template->param(%$data);
291 if (C4::Context->preference('ExtendedPatronAttributes')) {
292 my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber);
293 my @classes = uniq( map {$_->{class}} @$attributes );
294 @classes = sort @classes;
296 my @attributes_loop;
297 for my $class (@classes) {
298 my @items;
299 for my $attr (@$attributes) {
300 push @items, $attr if $attr->{class} eq $class
302 my $av = Koha::AuthorisedValues->search({ category => 'PA_CLASS', authorised_value => $class });
303 my $lib = $av->count ? $av->next->lib : $class;
305 push @attributes_loop, {
306 class => $class,
307 items => \@items,
308 lib => $lib,
312 $template->param(
313 ExtendedPatronAttributes => 1,
314 attributes_loop => \@attributes_loop
317 my @types = C4::Members::AttributeTypes::GetAttributeTypes();
318 if (scalar(@types) == 0) {
319 $template->param(no_patron_attribute_types => 1);
323 if (C4::Context->preference('EnhancedMessagingPreferences')) {
324 C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
325 $template->param(messaging_form_inactive => 1);
326 $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
327 $template->param(SMSnumber => $data->{'smsalertnumber'});
328 $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
331 if ( C4::Context->preference("ExportCircHistory") ) {
332 $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]);
335 # Display the language description instead of the code
336 # Note that this is certainly wrong
337 my ( $subtag, $region ) = split '-', $patron->lang;
338 my $translated_language = C4::Languages::language_get_description( $subtag, $subtag, 'language' );
340 $template->param(
341 patron => $patron,
342 translated_language => $translated_language,
343 detailview => 1,
344 borrowernumber => $borrowernumber,
345 othernames => $data->{'othernames'},
346 categoryname => $patron->category->description,
347 was_renewed => scalar $input->param('was_renewed') ? 1 : 0,
348 todaysdate => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
349 totalprice => sprintf("%.2f", $totalprice),
350 totaldue => sprintf("%.2f", $total),
351 totaldue_raw => $total,
352 overdues_exist => $overdues_exist,
353 StaffMember => $category_type eq 'S',
354 is_child => $category_type eq 'C',
355 $category_type => 1, # [% IF ( I ) %] = institutional/organisation
356 samebranch => $samebranch,
357 quickslip => $quickslip,
358 housebound_role => scalar $patron->housebound_role,
359 privacy_guarantor_checkouts => $data->{'privacy_guarantor_checkouts'},
360 RoutingSerials => C4::Context->preference('RoutingSerials'),
361 PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
362 relatives_issues_count => $relatives_issues_count,
363 relatives_borrowernumbers => \@relatives,
366 output_html_with_http_headers $input, $cookie, $template->output;