3 # This file is part of Koha.
4 # parts copyright 2010 BibLibre
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 #use warnings; FIXME - Bug 2505
30 use C4
::Members
::AttributeTypes
;
31 use C4
::Members
::Attributes qw
/GetBorrowerAttributeValue/;
36 use Koha
::Account
::Lines
;
42 use Koha
::Patron
::Attribute
::Types
;
43 use Koha
::Patron
::Messages
;
44 use Koha
::Patron
::Discharge
;
47 use constant ATTRIBUTE_SHOW_BARCODE
=> 'SHOW_BCODE';
49 use Scalar
::Util
qw(looks_like_number);
59 if (C4
::Context
->preference('BakerTaylorEnabled')) {
60 require C4
::External
::BakerTaylor
;
61 import C4
::External
::BakerTaylor
qw(&image_url &link_url);
65 # CAS single logout handling
66 # Will print header and exit
67 C4
::Context
->preference('casAuthentication') and C4
::Auth_with_cas
::logout_if_required
($query);
69 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
71 template_name
=> "opac-user.tt",
79 my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') );
82 for ( C4
::Context
->preference("OPACShowHoldQueueDetails") ) {
83 m/priority/ and $show_priority = 1;
86 my $patronupdate = $query->param('patronupdate');
89 $template->param( shibbolethAuthentication
=> C4
::Context
->config('useshibboleth') );
91 # get borrower information ....
92 my $patron = Koha
::Patrons
->find( $borrowernumber );
93 my $borr = $patron->unblessed;
95 my ( $today_year, $today_month, $today_day) = Today
();
96 my ($warning_year, $warning_month, $warning_day) = split /-/, $borr->{'dateexpiry'};
98 my $debar = Koha
::Patrons
->find( $borrowernumber )->is_debarred;
103 $template->param( 'userdebarred' => $userdebarred );
104 if ( $debar ne "9999-12-31" ) {
105 $borr->{'userdebarreddate'} = $debar;
107 # FIXME looks like $available is not needed
108 # If a user is discharged they have a validated discharge available
109 my $available = Koha
::Patron
::Discharge
::count
({
110 borrowernumber
=> $borrowernumber,
113 $template->param( 'discharge_available' => $available && Koha
::Patron
::Discharge
::is_discharged
({borrowernumber
=> $borrowernumber}) );
116 if ( $userdebarred || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
117 $borr->{'flagged'} = 1;
121 my $amountoutstanding = $patron->account->balance;
122 if ( $amountoutstanding > 5 ) {
123 $borr->{'amountoverfive'} = 1;
125 if ( 5 >= $amountoutstanding && $amountoutstanding > 0 ) {
126 $borr->{'amountoverzero'} = 1;
128 my $no_renewal_amt = C4
::Context
->preference( 'OPACFineNoRenewals' );
129 $no_renewal_amt = undef unless looks_like_number
( $no_renewal_amt );
131 if ( C4
::Context
->preference('OpacRenewalAllowed')
132 && defined($no_renewal_amt)
133 && $amountoutstanding > $no_renewal_amt )
135 $borr->{'flagged'} = 1;
138 renewal_blocked_fines
=> $no_renewal_amt,
139 renewal_blocked_fines_amountoutstanding
=> $amountoutstanding,
143 if ( $amountoutstanding < 0 ) {
144 $borr->{'amountlessthanzero'} = 1;
145 $amountoutstanding = -1 * ( $amountoutstanding );
148 # Warningdate is the date that the warning starts appearing
149 if ( $borr->{'dateexpiry'} && C4
::Context
->preference('NotifyBorrowerDeparture') ) {
150 my $days_to_expiry = Date_to_Days
( $warning_year, $warning_month, $warning_day ) - Date_to_Days
( $today_year, $today_month, $today_day );
151 if ( $days_to_expiry < 0 ) {
152 #borrower card has expired, warn the borrower
153 $borr->{'warnexpired'} = $borr->{'dateexpiry'};
154 } elsif ( $days_to_expiry < C4
::Context
->preference('NotifyBorrowerDeparture') ) {
155 # borrower card soon to expire, warn the borrower
156 $borr->{'warndeparture'} = $borr->{dateexpiry
};
157 if (C4
::Context
->preference('ReturnBeforeExpiry')){
158 $borr->{'returnbeforeexpiry'} = 1;
163 # pass on any renew errors to the template for displaying
164 my $renew_error = $query->param('renew_error');
166 $template->param( BORROWER_INFO
=> $borr,
167 amountoutstanding
=> $amountoutstanding,
168 borrowernumber
=> $borrowernumber,
169 patron_flagged
=> $borr->{flagged
},
170 OPACMySummaryHTML
=> (C4
::Context
->preference("OPACMySummaryHTML")) ?
1 : 0,
171 surname
=> $borr->{surname
},
172 RENEW_ERROR
=> $renew_error,
176 #get issued items ....
179 my $overdues_count = 0;
182 my $itemtypes = { map { $_->{itemtype
} => $_ } @
{ Koha
::ItemTypes
->search_with_localization->unblessed } };
183 my $pending_checkouts = $patron->pending_checkouts->search({}, { order_by
=> [ { -desc
=> 'date_due' }, { -asc
=> 'issue_id' } ] });
184 if ( $pending_checkouts->count ) { # Useless test
185 while ( my $c = $pending_checkouts->next ) {
186 my $issue = $c->unblessed_all_relateds;
188 my $restype = GetReserveStatus
( $issue->{'itemnumber'} );
190 $issue->{'reserved'} = 1;
193 # Must be moved in a module if reused
194 my $charges = Koha
::Account
::Lines
->search(
196 borrowernumber
=> $patron->borrowernumber,
197 amountoutstanding
=> { '>' => 0 },
198 accounttype
=> [ 'F', 'FU', 'L' ],
199 itemnumber
=> $issue->{itemnumber
}
201 { select => [ { sum
=> 'amountoutstanding' } ], as
=> ['charges'] }
203 $issue->{charges
} = $charges->count ?
$charges->next->get_column('charges') : 0;
205 my $rental_fines = Koha
::Account
::Lines
->search(
207 borrowernumber
=> $patron->borrowernumber,
208 amountoutstanding
=> { '>' => 0 },
209 accounttype
=> 'Rent',
210 itemnumber
=> $issue->{itemnumber
}
213 select => [ { sum
=> 'amountoutstanding' } ],
214 as
=> ['rental_fines']
217 $issue->{rentalfines
} = $charges->count ?
$charges->next->get_column('rental_fines') : 0;
219 my $marcrecord = GetMarcBiblio
({ biblionumber
=> $issue->{'biblionumber'} });
220 $issue->{'subtitle'} = GetRecordValue
('subtitle', $marcrecord, GetFrameworkCode
($issue->{'biblionumber'}));
221 # check if item is renewable
222 my ($status,$renewerror) = CanBookBeRenewed
( $borrowernumber, $issue->{'itemnumber'} );
223 ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount
($borrowernumber, $issue->{'itemnumber'});
224 ( $issue->{'renewalfee'}, $issue->{'renewalitemtype'} ) = GetIssuingCharges
( $issue->{'itemnumber'}, $borrowernumber );
225 if($status && C4
::Context
->preference("OpacRenewalAllowed")){
226 $issue->{'status'} = $status;
229 $issue->{'renewed'} = $renewed{ $issue->{'itemnumber'} };
232 $issue->{'too_many'} = 1 if $renewerror eq 'too_many';
233 $issue->{'on_reserve'} = 1 if $renewerror eq 'on_reserve';
234 $issue->{'norenew_overdue'} = 1 if $renewerror eq 'overdue';
235 $issue->{'auto_renew'} = 1 if $renewerror eq 'auto_renew';
236 $issue->{'auto_too_soon'} = 1 if $renewerror eq 'auto_too_soon';
237 $issue->{'auto_too_late'} = 1 if $renewerror eq 'auto_too_late';
238 $issue->{'auto_too_much_oweing'} = 1 if $renewerror eq 'auto_too_much_oweing';
240 if ( $renewerror eq 'too_soon' ) {
241 $issue->{'too_soon'} = 1;
242 $issue->{'soonestrenewdate'} = output_pref
(
243 C4
::Circulation
::GetSoonestRenewDate
(
244 $issue->{borrowernumber
},
251 if ( $c->is_overdue ) {
252 push @overdues, $issue;
254 $issue->{'overdue'} = 1;
257 $issue->{'issued'} = 1;
260 my $itemtype = $issue->{'itemtype'};
262 $issue->{'imageurl'} = getitemtypeimagelocation
( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
263 $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
265 push @issuedat, $issue;
268 my $isbn = GetNormalizedISBN
($issue->{'isbn'});
269 $issue->{normalized_isbn
} = $isbn;
270 $issue->{normalized_upc
} = GetNormalizedUPC
( $marcrecord, C4
::Context
->preference('marcflavour') );
273 if (my $my_summary_html = C4
::Context
->preference('OPACMySummaryHTML')){
274 $issue->{author
} ?
$my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
275 $issue->{title
} =~ s/\/+$//; # remove trailing slash
276 $issue->{title
} =~ s/\s+$//; # remove trailing space
277 $issue->{title
} ?
$my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
278 $issue->{isbn
} ?
$my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
279 $issue->{biblionumber
} ?
$my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
280 $issue->{MySummaryHTML
} = $my_summary_html;
284 my $overduesblockrenewing = C4
::Context
->preference('OverduesBlockRenewing');
285 $canrenew = 0 if ($overduesblockrenewing ne 'allow' and $overdues_count == $count);
287 $template->param( ISSUES
=> \
@issuedat );
288 $template->param( issues_count
=> $count );
289 $template->param( canrenew
=> $canrenew );
290 $template->param( OVERDUES
=> \
@overdues );
291 $template->param( overdues_count
=> $overdues_count );
293 my $show_barcode = Koha
::Patron
::Attribute
::Types
->search(
294 { code
=> ATTRIBUTE_SHOW_BARCODE
} )->count;
296 my $patron_show_barcode = GetBorrowerAttributeValue
($borrowernumber, ATTRIBUTE_SHOW_BARCODE
);
297 undef $show_barcode if defined($patron_show_barcode) && !$patron_show_barcode;
299 $template->param( show_barcode
=> 1 ) if $show_barcode;
301 # now the reserved items....
302 my $reserves = Koha
::Holds
->search( { borrowernumber
=> $borrowernumber } );
305 RESERVES
=> $reserves,
306 showpriority
=> $show_priority,
309 if (C4
::Context
->preference('BakerTaylorEnabled')) {
311 BakerTaylorEnabled
=> 1,
312 BakerTaylorImageURL
=> &image_url
(),
313 BakerTaylorLinkURL
=> &link_url
(),
314 BakerTaylorBookstoreURL
=> C4
::Context
->preference('BakerTaylorBookstoreURL'),
318 if (C4
::Context
->preference("OPACAmazonCoverImages") or
319 C4
::Context
->preference("GoogleJackets") or
320 C4
::Context
->preference("BakerTaylorEnabled") or
321 C4
::Context
->preference("SyndeticsCoverImages")) {
322 $template->param(JacketImages
=>1);
326 OverDriveCirculation
=> C4
::Context
->preference('OverDriveCirculation') || 0,
327 overdrive_error
=> scalar $query->param('overdrive_error') || undef,
328 overdrive_tab
=> scalar $query->param('overdrive_tab') || 0,
331 my $patron_messages = Koha
::Patron
::Messages
->search(
333 borrowernumber
=> $borrowernumber,
338 if ( C4
::Context
->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor')
339 || C4
::Context
->preference('AllowStaffToSetCheckoutsVisibilityForGuarantor') )
342 Koha
::Database
->new()->schema()->resultset("Borrower")->search(
344 privacy_guarantor_checkouts
=> 1,
345 'me.guarantorid' => $borrowernumber
347 { prefetch
=> [ { 'issues' => { 'item' => 'biblio' } } ] }
349 $template->param( relatives
=> \
@relatives );
353 borrower
=> scalar Koha
::Patrons
->find($borrowernumber),
354 patron_messages
=> $patron_messages,
355 opacnote
=> $borr->{opacnote
},
356 patronupdate
=> $patronupdate,
357 OpacRenewalAllowed
=> C4
::Context
->preference("OpacRenewalAllowed"),
359 SuspendHoldsOpac
=> C4
::Context
->preference('SuspendHoldsOpac'),
360 AutoResumeSuspendedHolds
=> C4
::Context
->preference('AutoResumeSuspendedHolds'),
361 OpacHoldNotes
=> C4
::Context
->preference('OpacHoldNotes'),
362 failed_holds
=> scalar $query->param('failed_holds'),
365 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };