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