functions that were in C4::Interface::CGI::Output are now in C4::Output.
[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 # $Id$
19
20 use strict;
21 require Exporter;
22 use CGI;
23
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Circulation;
27 use C4::Reserves;
28 use C4::Members;
29 use C4::Output;
30 use C4::Biblio;
31 use C4::Date;
32 use C4::Letters;
33 use C4::Branch; # GetBranches
34
35 my $query = new CGI;
36 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
37     {
38         template_name   => "opac-user.tmpl",
39         query           => $query,
40         type            => "opac",
41         authnotrequired => 0,
42         flagsrequired   => { borrow => 1 },
43         debug           => 1,
44     }
45 );
46
47 # get borrower information ....
48 my ( $borr, $flags ) = GetMemberDetails( $borrowernumber );
49
50 $borr->{'dateenrolled'} = format_date( $borr->{'dateenrolled'} );
51 $borr->{'expiry'}       = format_date( $borr->{'expiry'} );
52 $borr->{'dateofbirth'}  = format_date( $borr->{'dateofbirth'} );
53 $borr->{'ethnicity'}    = fixEthnicity( $borr->{'ethnicity'} );
54
55 if ( $borr->{'debarred'} || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
56     $borr->{'flagged'} = 1;
57 }
58
59 if ( $borr->{'amountoutstanding'} > 5 ) {
60     $borr->{'amountoverfive'} = 1;
61 }
62 if ( 5 >= $borr->{'amountoutstanding'} && $borr->{'amountoutstanding'} > 0 ) {
63     $borr->{'amountoverzero'} = 1;
64 }
65 if ( $borr->{'amountoutstanding'} < 0 ) {
66     $borr->{'amountlessthanzero'} = 1;
67     $borr->{'amountoutstanding'} = -1 * ( $borr->{'amountoutstanding'} );
68 }
69
70 $borr->{'amountoutstanding'} = sprintf "%.02f", $borr->{'amountoutstanding'};
71
72 my @bordat;
73 $bordat[0] = $borr;
74
75 $template->param( BORROWER_INFO  => \@bordat );
76 $template->param( borrowernumber => $borrowernumber );
77
78 #get issued items ....
79 my $issues = GetBorrowerIssues($borr);
80
81 my $count          = 0;
82 my $overdues_count = 0;
83 my @overdues;
84 my @issuedat;
85 my $imgdir = getitemtypeimagesrc();
86 my $itemtypes = GetItemTypes();
87 foreach my $issue ( @$issues ) {
88
89     # check for reserves
90     my ( $restype, $res ) = CheckReserves( $issue->{'itemnumber'} );
91     if ( $restype ) {
92         $issue->{'reserved'} = 1;
93     }
94     
95     my ( $total , $accts, $numaccts) = GetBorrowerAcctRecord( $borrowernumber );
96     my $charges = 0;
97     foreach my $ac (@$accts) {
98         if ( $ac->{'itemnumber'} == $issue->{'itemnumber'} ) {
99             $charges += $ac->{'amountoutstanding'}
100               if $ac->{'accounttype'} eq 'F';
101             $charges += $ac->{'amountoutstanding'}
102               if $ac->{'accounttype'} eq 'L';
103         }
104     }
105     $issue->{'charges'} = $charges;
106
107     # get publictype for icon
108
109     my $publictype = $issue->{'publictype'};
110     $issue->{$publictype} = 1;
111
112     # check if item is renewable
113     my $status = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
114
115     $issue->{'status'} = $status;
116
117     if ( $issue->{'overdue'} ) {
118         push @overdues, $issue;
119         $overdues_count++;
120         $issue->{'overdue'} = 1;
121     }
122     else {
123         $issue->{'issued'} = 1;
124     }
125     # imageurl:
126     my $itemtype = $issue->{'itemtype'};
127     if ( $itemtype ) {
128         $issue->{'imageurl'}    = $imgdir."/".$itemtypes->{$itemtype}->{'imageurl'};
129         $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
130     }
131     push @issuedat, $issue;
132     $count++;
133 }
134
135 $template->param( ISSUES       => \@issuedat );
136 $template->param( issues_count => $count );
137
138 $template->param( OVERDUES       => \@overdues );
139 $template->param( overdues_count => $overdues_count );
140
141 my $branches = GetBranches();
142
143 # now the reserved items....
144 my ( $rcount, $reserves ) = FindReserves( undef, $borrowernumber );
145 foreach my $res (@$reserves) {
146     $res->{'reservedate'} = format_date( $res->{'reservedate'} );
147     my $publictype = $res->{'publictype'};
148     $res->{$publictype} = 1;
149     $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
150     $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
151     my $biblioData = GetBiblioData($res->{'biblionumber'});
152     $res->{'reserves_title'} = $biblioData->{'title'};
153 }
154
155 $template->param( RESERVES       => $reserves );
156 $template->param( reserves_count => $rcount );
157
158 my @waiting;
159 my $wcount = 0;
160 foreach my $res (@$reserves) {
161     if ( $res->{'itemnumber'} ) {
162         my $item = GetItem( $res->{'itemnumber'});
163         $res->{'holdingbranch'} =
164           $branches->{ $item->{'holdingbranch'} }->{'branchname'};
165         $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
166         if ( $res->{'holdingbranch'} eq $res->{'branch'} ) {
167             $res->{'atdestination'} = 1;
168         }
169         my $biblioData = GetBiblioData($res->{'biblionumber'});
170         $res->{'waiting_title'} = $biblioData->{'title'};
171         push @waiting, $res;
172         $wcount++;
173     }
174 }
175
176 $template->param( WAITING => \@waiting );
177
178 # current alert subscriptions
179 my $alerts = getalert($borrowernumber);
180 foreach ( @$alerts ) {
181     $_->{ $_->{type} } = 1;
182     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
183 }
184
185 $template->param(
186     waiting_count      => $wcount,
187     textmessaging      => $borr->{textmessaging},
188 );
189
190 output_html_with_http_headers $query, $cookie, $template->output;
191