setting default acquisition to NORMAL, which is better, imho (it's always possible...
[koha.git] / moremember.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 # script to do a borrower enquiry/bring up borrower details etc
6 # Displays all the details about a borrower
7 # written 20/12/99 by chris@katipo.co.nz
8 # last modified 21/1/2000 by chris@katipo.co.nz
9 # modified 31/1/2001 by chris@katipo.co.nz
10 #   to not allow items on request to be renewed
11 #
12 # needs html removed and to use the C4::Output more, but its tricky
13 #
14
15
16 # Copyright 2000-2002 Katipo Communications
17 #
18 # This file is part of Koha.
19 #
20 # Koha is free software; you can redistribute it and/or modify it under the
21 # terms of the GNU General Public License as published by the Free Software
22 # Foundation; either version 2 of the License, or (at your option) any later
23 # version.
24 #
25 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
26 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
27 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
28 #
29 # You should have received a copy of the GNU General Public License along with
30 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
31 # Suite 330, Boston, MA  02111-1307 USA
32
33 use strict;
34 use C4::Auth;
35 use C4::Context;
36 use C4::Output;
37 use C4::Interface::CGI::Output;
38 use C4::Interface::CGI::Template;
39 use CGI;
40 use C4::Search;
41 use Date::Manip;
42 use C4::Date;
43 use C4::Reserves2;
44 use C4::Circulation::Renewals2;
45 use C4::Circulation::Circ2;
46 use C4::Koha;
47 use HTML::Template;
48
49 my $dbh = C4::Context->dbh;
50
51 my $input = new CGI;
52
53 my ($template, $loggedinuser, $cookie)
54     = get_template_and_user({template_name => "members/moremember.tmpl",
55                              query => $input,
56                              type => "intranet",
57                              authnotrequired => 0,
58                              flagsrequired => {borrowers => 1},
59                              debug => 1,
60                              });
61
62 my $bornum=$input->param('bornum');
63
64 #start the page and read in includes
65
66 my $data=borrdata('',$bornum);
67
68 $template->param($data->{'categorycode'} => 1); # in template <TMPL_IF name="I"> => instutitional (A for Adult & C for children)
69
70 $data->{'dateenrolled'} = format_date($data->{'dateenrolled'});
71 $data->{'expiry'} = format_date($data->{'expiry'});
72 $data->{'dateofbirth'} = format_date($data->{'dateofbirth'});
73 $data->{'IS_ADULT'} = ($data->{'categorycode'} ne 'I');
74
75 $data->{'ethnicity'} = fixEthnicity($data->{'ethnicity'});
76
77 $data->{&expand_sex_into_predicate($data->{'sex'})} = 1;
78
79 if ($data->{'categorycode'} eq 'C'){
80         my $data2=borrdata('',$data->{'guarantor'});
81         $data->{'streetaddress'}=$data2->{'streetaddress'};
82         $data->{'city'}=$data2->{'city'};
83         $data->{'physstreet'}=$data2->{'physstreet'};
84         $data->{'streetcity'}=$data2->{'streetcity'};
85         $data->{'phone'}=$data2->{'phone'};
86         $data->{'phoneday'}=$data2->{'phoneday'};
87         $data->{'zipcode'} = $data2->{'zipcode'};
88 }
89
90
91 if ($data->{'ethnicity'} || $data->{'ethnotes'}) {
92         $template->param(printethnicityline => 1);
93 }
94
95 if ($data->{'categorycode'} ne 'C'){
96         $template->param(isguarantee => 1);
97         # FIXME
98         # It looks like the $i is only being returned to handle walking through
99         # the array, which is probably better done as a foreach loop.
100         #
101         my ($count,$guarantees)=findguarantees($data->{'borrowernumber'});
102         my @guaranteedata;
103         for (my $i=0;$i<$count;$i++){
104                 push (@guaranteedata, {borrowernumber => $guarantees->[$i]->{'borrowernumber'},
105                                         cardnumber => $guarantees->[$i]->{'cardnumber'},
106                                         name => $guarantees->[$i]->{'firstname'} . " " . $guarantees->[$i]->{'surname'}});
107         }
108         $template->param(guaranteeloop => \@guaranteedata);
109
110 } else {
111         my ($guarantor)=findguarantor($data->{'borrowernumber'});
112         unless ($guarantor->{'borrowernumber'} == 0){
113                 $template->param(guarantorborrowernumber => $guarantor->{'borrowernumber'}, guarantorcardnumber => $guarantor->{'cardnumber'});
114         }
115 }
116
117 my %bor;
118 $bor{'borrowernumber'}=$bornum;
119
120 # Converts the branchcode to the branch name
121 $data->{'branchcode'} = &getbranchname($data->{'branchcode'});
122
123 # Converts the categorycode to the description
124 $data->{'categorycode'} = &getborrowercategory($data->{'categorycode'});
125
126 # FIXME
127 # it looks like $numaccts is a temp variable and that the
128 # for (my $i;$i<$numaccts;$i++)
129 # can be turned into a foreach loop instead
130 #
131 my ($numaccts,$accts,$total)=getboracctrecord('',\%bor);
132 #if ($numaccts > 10){
133 #  $numaccts=10;
134 #}
135 my @accountdata;
136 for (my$i=0;$i<$numaccts;$i++){
137         my $amount= $accts->[$i]{'amount'} + 0.00;
138         my $amount2= $accts->[$i]{'amountoutstanding'} + 0.00;
139         my %row = %$accts->[$i];
140         if ($amount2 != 0){
141                 my $item=" &nbsp; ";
142                 $row{'date'} = format_date($accts->[$i]{'date'});
143
144                 if ($accts->[$i]{'accounttype'} ne 'Res'){
145                         #get item data
146                         #$item=
147                 }
148
149                 # FIXME
150                 # why set this variable if it's not going to be used?
151                 #
152                 my $env;
153                 if ($accts->[$i]{'accounttype'} ne 'Res'){
154                         my $iteminfo=C4::Circulation::Circ2::getiteminformation($env,$accts->[$i]->{'itemnumber'},'');
155                 # FIXME, seems to me $iteminfo gets not defined
156                         %row = (%row , %$iteminfo) if $iteminfo;
157                 }
158         }
159         push (@accountdata, \%row);
160 }
161
162 my ($count,$issue)=borrissues($bornum);
163 my $today=ParseDate('today');
164 my @issuedata;
165 for (my $i=0;$i<$count;$i++){
166         my $datedue=ParseDate($issue->[$i]{'date_due'});
167         $issue->[$i]{'date_due'} = format_date($issue->[$i]{'date_due'});
168         my %row = %{$issue->[$i]};
169         if ($datedue < $today){
170                 $row{'red'}=1; #print "<font color=red>";
171         }
172         #find the charge for an item
173         # FIXME - This is expecting
174         # &C4::Circulation::Renewals2::calc_charges, but it's getting
175         # &C4::Circulation::Circ2::calc_charges, which only returns one
176         # element, so itemtype isn't being set.
177         # But &C4::Circulation::Renewals2::calc_charges doesn't appear to
178         # return the correct item type either (or a properly-formatted
179         # charge, for that matter).
180         my ($charge,$itemtype)=calc_charges(undef,$dbh,$issue->[$i]{'itemnumber'},$bornum);
181         $row{'itemtype'}=&ItemType($itemtype);
182         $row{'charge'}=$charge;
183
184         #check item is not reserved
185         my ($restype,$reserves)=CheckReserves($issue->[$i]{'itemnumber'});
186         if ($restype){
187                 print "<TD><a href=/cgi-bin/koha/request.pl?bib=$issue->[$i]{'biblionumber'}>On Request - no renewals</a></td></tr>";
188                 #  } elsif ($issue->[$i]->{'renewals'} > 0) {
189                 #      print "<TD>Previously Renewed - no renewals</td></tr>";
190         } else {
191                 $row{'norenew'}=0;
192         }
193         push (@issuedata, \%row);
194 }
195
196 my ($rescount,$reserves)=FindReserves('',$bornum); #From C4::Reserves2
197
198 my @reservedata;
199 foreach my $reserveline (@$reserves) {
200         $reserveline->{'reservedate2'} = format_date($reserveline->{'reservedate'});
201         my $restitle;
202         my %row = %$reserveline;
203         if ($reserveline->{'constrainttype'} eq 'o'){
204                 $restitle=getreservetitle($reserveline->{'biblionumber'},$reserveline->{'borrowernumber'},$reserveline->{'reservedate'},$reserveline->{'rtimestamp'});
205                 %row =  (%row , %$restitle) if $restitle;
206         }
207         push (@reservedata, \%row);
208 }
209
210 $template->param($data);
211 $template->param(
212                  bornum          => $bornum,
213                  accountloop     => \@accountdata,
214                  issueloop       => \@issuedata,
215                  reserveloop     => \@reservedata);
216
217 output_html_with_http_headers $input, $cookie, $template->output;