HUGE COMMIT : code cleaning circulation.
[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::Reserves2;
28 use C4::Members;
29 use C4::Interface::CGI::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 ( $numaccts, $accts, $total ) = getboracctrecord( undef, $borr );
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 %env;
114     my $status = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
115
116     $issue->{'status'} = $status;
117
118     if ( $issue->{'overdue'} ) {
119         push @overdues, $issue;
120         $overdues_count++;
121         $issue->{'overdue'} = 1;
122     }
123     else {
124         $issue->{'issued'} = 1;
125     }
126     # imageurl:
127     my $itemtype = $issue->{'itemtype'};
128     if ( $itemtype ) {
129         $issue->{'imageurl'}    = $imgdir."/".$itemtypes->{$itemtype}->{'imageurl'};
130         $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
131     }
132     push @issuedat, $issue;
133     $count++;
134 }
135
136 $template->param( ISSUES       => \@issuedat );
137 $template->param( issues_count => $count );
138
139 $template->param( OVERDUES       => \@overdues );
140 $template->param( overdues_count => $overdues_count );
141
142 my $branches = GetBranches();
143
144 # now the reserved items....
145 my ( $rcount, $reserves ) = FindReserves( undef, $borrowernumber );
146 foreach my $res (@$reserves) {
147     $res->{'reservedate'} = format_date( $res->{'reservedate'} );
148     my $publictype = $res->{'publictype'};
149     $res->{$publictype} = 1;
150     $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
151     $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
152     my $biblioData = GetBiblioData($res->{'biblionumber'});
153     $res->{'reserves_title'} = $biblioData->{'title'};
154 }
155
156 $template->param( RESERVES       => $reserves );
157 $template->param( reserves_count => $rcount );
158
159 my @waiting;
160 my $wcount = 0;
161 foreach my $res (@$reserves) {
162     if ( $res->{'itemnumber'} ) {
163         my $item = GetItem( $res->{'itemnumber'});
164         $res->{'holdingbranch'} =
165           $branches->{ $item->{'holdingbranch'} }->{'branchname'};
166         $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
167         if ( $res->{'holdingbranch'} eq $res->{'branch'} ) {
168             $res->{'atdestination'} = 1;
169         }
170         my $biblioData = GetBiblioData($res->{'biblionumber'});
171         $res->{'waiting_title'} = $biblioData->{'title'};
172         push @waiting, $res;
173         $wcount++;
174     }
175 }
176
177 $template->param( WAITING => \@waiting );
178
179 # current alert subscriptions
180 my $alerts = getalert($borrowernumber);
181 foreach ( @$alerts ) {
182     $_->{ $_->{type} } = 1;
183     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
184 }
185
186 $template->param(
187     waiting_count      => $wcount,
188     textmessaging      => $borr->{textmessaging},
189 );
190
191 output_html_with_http_headers $query, $cookie, $template->output;
192