Bug 6598 : ensure OPACFineRenewals can prevent opac renewals
[koha.git] / opac / opac-user.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 # parts copyright 2010 BibLibre
5 #
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
9 # version.
10 #
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along with
16 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17 # Suite 330, Boston, MA  02111-1307 USA
18
19
20 use strict;
21 #use warnings; FIXME - Bug 2505
22
23 use CGI;
24
25 use C4::Auth;
26 use C4::Koha;
27 use C4::Circulation;
28 use C4::Reserves;
29 use C4::Members;
30 use C4::Members::AttributeTypes;
31 use C4::Members::Attributes qw/GetBorrowerAttributeValue/;
32 use C4::Output;
33 use C4::Biblio;
34 use C4::Items;
35 use C4::Dates qw/format_date/;
36 use C4::Letters;
37 use C4::Branch; # GetBranches
38
39 use constant ATTRIBUTE_SHOW_BARCODE => 'SHOW_BCODE';
40
41 my $query = new CGI;
42
43 BEGIN {
44     if (C4::Context->preference('BakerTaylorEnabled')) {
45         require C4::External::BakerTaylor;
46         import C4::External::BakerTaylor qw(&image_url &link_url);
47     }
48 }
49
50 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
51     {
52         template_name   => "opac-user.tmpl",
53         query           => $query,
54         type            => "opac",
55         authnotrequired => 0,
56         flagsrequired   => { borrow => 1 },
57         debug           => 1,
58     }
59 );
60
61 my $OPACDisplayRequestPriority = (C4::Context->preference("OPACDisplayRequestPriority")) ? 1 : 0;
62 my $patronupdate = $query->param('patronupdate');
63
64 # get borrower information ....
65 my ( $borr ) = GetMemberDetails( $borrowernumber );
66
67 for (qw(dateenrolled dateexpiry dateofbirth)) {
68     ($borr->{$_}) and $borr->{$_} = format_date($borr->{$_});
69 }
70 $borr->{'ethnicity'} = fixEthnicity( $borr->{'ethnicity'} );
71
72 if ( $borr->{'debarred'} || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
73     $borr->{'flagged'} = 1;
74 }
75
76 if ( $borr->{'amountoutstanding'} > 5 ) {
77     $borr->{'amountoverfive'} = 1;
78 }
79 if ( 5 >= $borr->{'amountoutstanding'} && $borr->{'amountoutstanding'} > 0 ) {
80     $borr->{'amountoverzero'} = 1;
81 }
82 my $no_renewal_amt = C4::Context->preference( 'OPACFineNoRenewals' );
83 $no_renewal_amt ||= 0;
84
85 if ( $borr->{amountoutstanding} > $no_renewal_amt ) {
86     $borr->{'flagged'} = 1;
87     $template->param(
88         renewal_blocked_fines => sprintf( '%.02f', $no_renewal_amt ),
89     );
90 }
91
92 if ( $borr->{'amountoutstanding'} < 0 ) {
93     $borr->{'amountlessthanzero'} = 1;
94     $borr->{'amountoutstanding'} = -1 * ( $borr->{'amountoutstanding'} );
95 }
96
97 $borr->{'amountoutstanding'} = sprintf "%.02f", $borr->{'amountoutstanding'};
98
99 my @bordat;
100 $bordat[0] = $borr;
101
102 $template->param(   BORROWER_INFO     => \@bordat,
103                     borrowernumber    => $borrowernumber,
104                     patron_flagged    => $borr->{flagged},
105                     OPACMySummaryHTML => (C4::Context->preference("OPACMySummaryHTML")) ? 1 : 0,
106                 );
107
108 #get issued items ....
109
110 my $count          = 0;
111 my $toggle = 0;
112 my $overdues_count = 0;
113 my @overdues;
114 my @issuedat;
115 my $itemtypes = GetItemTypes();
116 my ($issues) = GetPendingIssues($borrowernumber);
117 if ($issues){
118         foreach my $issue ( sort { $b->{'date_due'} cmp $a->{'date_due'} } @$issues ) {
119                 # check for reserves
120                 my ( $restype, $res ) = CheckReserves( $issue->{'itemnumber'} );
121                 if ( $restype ) {
122                         $issue->{'reserved'} = 1;
123                 }
124                 
125                 my ( $total , $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
126                 my $charges = 0;
127                 foreach my $ac (@$accts) {
128                         if ( $ac->{'itemnumber'} == $issue->{'itemnumber'} ) {
129                                 $charges += $ac->{'amountoutstanding'}
130                                   if $ac->{'accounttype'} eq 'F';
131                                 $charges += $ac->{'amountoutstanding'}
132                                   if $ac->{'accounttype'} eq 'L';
133                         }
134                 }
135                 $issue->{'charges'} = $charges;
136
137                 # get publictype for icon
138
139                 my $publictype = $issue->{'publictype'};
140                 $issue->{$publictype} = 1;
141
142                 # check if item is renewable
143                 my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
144                 ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
145                 $issue->{'status'} = $status && C4::Context->preference("OpacRenewalAllowed");
146                 $issue->{'too_many'} = 1 if $renewerror and $renewerror eq 'too_many';
147                 $issue->{'on_reserve'} = 1 if $renewerror and $renewerror eq 'on_reserve';
148
149                 if ( $issue->{'overdue'} ) {
150                         push @overdues, $issue;
151                         $overdues_count++;
152                         $issue->{'overdue'} = 1;
153                 }
154                 else {
155                         $issue->{'issued'} = 1;
156                 }
157                 # imageurl:
158                 my $itemtype = $issue->{'itemtype'};
159                 if ( $itemtype ) {
160                         $issue->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
161                         $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
162                 }
163                 $issue->{date_due} = format_date($issue->{date_due});
164                 push @issuedat, $issue;
165                 $count++;
166                 
167                 my $isbn = GetNormalizedISBN($issue->{'isbn'});
168                 $issue->{normalized_isbn} = $isbn;
169
170                 # My Summary HTML
171                 if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){
172                     $issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
173                     $issue->{title} =~ s/\/+$//; # remove trailing slash
174                     $issue->{title} =~ s/\s+$//; # remove trailing space
175                     $issue->{title} ? $my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
176                     $issue->{isbn} ? $my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
177                     $issue->{biblionumber} ? $my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
178                     $issue->{MySummaryHTML} = $my_summary_html;
179                 }
180         }
181 }
182 $template->param( ISSUES       => \@issuedat );
183 $template->param( issues_count => $count );
184
185 $template->param( OVERDUES       => \@overdues );
186 $template->param( overdues_count => $overdues_count );
187
188 my $show_barcode = C4::Members::AttributeTypes::AttributeTypeExists( ATTRIBUTE_SHOW_BARCODE );
189 if ($show_barcode) {
190     my $patron_show_barcode = GetBorrowerAttributeValue($borrowernumber, ATTRIBUTE_SHOW_BARCODE);
191     undef $show_barcode if defined($patron_show_barcode) && !$patron_show_barcode;
192 }
193 $template->param( show_barcode => 1 ) if $show_barcode;
194
195 # load the branches
196 my $branches = GetBranches();
197 my @branch_loop;
198 for my $branch_hash (sort keys %$branches ) {
199     my $selected=(C4::Context->userenv && ($branch_hash eq C4::Context->userenv->{branch})) if (C4::Context->preference('SearchMyLibraryFirst'));
200     push @branch_loop,
201       {
202         value      => "branch: $branch_hash",
203         branchname => $branches->{$branch_hash}->{'branchname'},
204         selected => $selected
205       };
206 }
207 $template->param( branchloop => \@branch_loop );
208
209 # now the reserved items....
210 my @reserves  = GetReservesFromBorrowernumber( $borrowernumber );
211 foreach my $res (@reserves) {
212     $res->{'reservedate'} = format_date( $res->{'reservedate'} );
213
214     if ( $res->{'expirationdate'} ne '0000-00-00' ) {
215       $res->{'expirationdate'} = format_date( $res->{'expirationdate'} ) 
216     } else {
217       $res->{'expirationdate'} = '';
218     }
219     
220     my $publictype = $res->{'publictype'};
221     $res->{$publictype} = 1;
222     $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
223     $res->{'formattedwaitingdate'} = format_date($res->{'waitingdate'});
224     $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
225     my $biblioData = GetBiblioData($res->{'biblionumber'});
226     $res->{'reserves_title'} = $biblioData->{'title'};
227     if ($OPACDisplayRequestPriority) {
228         $res->{'priority'} = '' if $res->{'priority'} eq '0';
229     }
230 }
231
232 # use Data::Dumper;
233 # warn Dumper(@reserves);
234
235 $template->param( RESERVES       => \@reserves );
236 $template->param( reserves_count => $#reserves+1 );
237 $template->param( showpriority=>1 ) if $OPACDisplayRequestPriority;
238
239 my @waiting;
240 my $wcount = 0;
241 foreach my $res (@reserves) {
242     if ( $res->{'itemnumber'} ) {
243         my $item = GetItem( $res->{'itemnumber'});
244         $res->{'holdingbranch'} =
245           $branches->{ $item->{'holdingbranch'} }->{'branchname'};
246         $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
247         # get document reserve status
248         my $biblioData = GetBiblioData($res->{'biblionumber'});
249         $res->{'waiting_title'} = $biblioData->{'title'};
250         if ( ( $res->{'found'} eq 'W' ) ) {
251             my $item = $res->{'itemnumber'};
252             $item = GetBiblioFromItemNumber($item,undef);
253             $res->{'wait'}= 1; 
254             $res->{'holdingbranch'}=$item->{'holdingbranch'};
255             $res->{'biblionumber'}=$item->{'biblionumber'};
256             $res->{'barcode'} = $item->{'barcode'};
257             $res->{'wbrcode'} = $res->{'branchcode'};
258             $res->{'itemnumber'}    = $res->{'itemnumber'};
259             $res->{'wbrname'} = $branches->{$res->{'branchcode'}}->{'branchname'};
260             if($res->{'holdingbranch'} eq $res->{'wbrcode'}){
261                 $res->{'atdestination'} = 1;
262             }
263             # set found to 1 if reserve is waiting for patron pickup
264             $res->{'found'} = 1 if $res->{'found'} eq 'W';
265         } else {
266             my ($transfertwhen, $transfertfrom, $transfertto) = GetTransfers( $res->{'itemnumber'} );
267             if ($transfertwhen) {
268                 $res->{intransit} = 1;
269                 $res->{datesent}   = format_date($transfertwhen);
270                 $res->{frombranch} = GetBranchName($transfertfrom);
271             }
272         }
273         push @waiting, $res;
274         $wcount++;
275     }
276     # can be cancelled
277     #$res->{'cancelable'} = 1 if ($res->{'wait'} && $res->{'atdestination'} && $res->{'found'} ne "1");
278     $res->{'cancelable'} = 1 if    ($res->{wait} and not $res->{found}) or (not $res->{wait} and not $res->{intransit});
279     
280 }
281
282 $template->param( WAITING => \@waiting );
283
284 # current alert subscriptions
285 my $alerts = getalert($borrowernumber);
286 foreach ( @$alerts ) {
287     $_->{ $_->{type} } = 1;
288     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
289 }
290
291 if (C4::Context->preference('BakerTaylorEnabled')) {
292     $template->param(
293         BakerTaylorEnabled  => 1,
294         BakerTaylorImageURL => &image_url(),
295         BakerTaylorLinkURL  => &link_url(),
296         BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
297     );
298 }
299
300 if (C4::Context->preference("OPACAmazonCoverImages") or 
301     C4::Context->preference("GoogleJackets") or
302     C4::Context->preference("BakerTaylorEnabled") or
303         C4::Context->preference("SyndeticsCoverImages")) {
304         $template->param(JacketImages=>1);
305 }
306
307 if ( GetMessagesCount( $borrowernumber, 'B' ) ) {
308         $template->param( bor_messages => 1 );
309 }
310
311 if ( $borr->{'opacnote'} ) {
312   $template->param( 
313     bor_messages => 1,
314     opacnote => $borr->{'opacnote'},
315   );
316 }
317
318 $template->param(
319     bor_messages_loop   => GetMessages( $borrowernumber, 'B', 'NONE' ),
320     waiting_count      => $wcount,
321     textmessaging      => $borr->{textmessaging},
322     patronupdate => $patronupdate,
323     OpacRenewalAllowed => C4::Context->preference("OpacRenewalAllowed"),
324     userview => 1,
325     dateformat    => C4::Context->preference("dateformat"),
326 );
327
328 output_html_with_http_headers $query, $cookie, $template->output;
329