#!/usr/bin/perl # $Id$ # script to do a borrower enquiry/bring up borrower details etc # Displays all the details about a borrower # written 20/12/99 by chris@katipo.co.nz # last modified 21/1/2000 by chris@katipo.co.nz # modified 31/1/2001 by chris@katipo.co.nz # to not allow items on request to be renewed # # needs html removed and to use the C4::Output more, but its tricky # # Copyright 2000-2002 Katipo Communications # # This file is part of Koha. # # Koha is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # Koha is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA use strict; use C4::Auth; use C4::Context; use C4::Output; use C4::Interface::CGI::Output; use C4::Interface::CGI::Template; use CGI; use C4::Members; use Date::Manip; use C4::Date; use C4::Reserves2; use C4::Circulation::Circ2; use C4::Koha; use C4::Letters; use HTML::Template; my $dbh = C4::Context->dbh; my $input = new CGI; my $print = $input->param('print'); my $template_name; if($print eq "page"){ $template_name = "members/moremember-print.tmpl"; } elsif($print eq "slip"){ $template_name = "members/moremember-receipt.tmpl"; } else { $template_name = "members/moremember.tmpl"; } my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => $template_name, query => $input, type => "intranet", authnotrequired => 0, flagsrequired => {borrowers => 1}, debug => 1, }); my $bornum=$input->param('bornum'); #start the page and read in includes my $data=borrdata('',$bornum); my (undef,undef,undef,$category_type)=getborrowercategory($data->{'categorycode'}); $template->param($data->{'categorycode'} => 1); # in template => instutitional (A for Adult & C for children) $data->{'dateenrolled'} = format_date($data->{'dateenrolled'}); $data->{'dateexpiry'} = format_date($data->{'dateexpiry'}); $data->{'dateofbirth'} = format_date($data->{'dateofbirth'}); $data->{'IS_ADULT'} = ($data->{'categorycode'} ne 'I'); if($data->{'debarred'} || $data->{'gonenoaddress'} || $data->{'lost'} || $data->{'borrowernotes'}){ $template->param(flagged =>1); } $data->{'ethnicity'} = fixEthnicity($data->{'ethnicity'}); $data->{&expand_sex_into_predicate($data->{'sex'})} = 1; if ($category_type eq 'C' and $data->{'guarantorid'} ne '0' ){ my $data2=borrdata('',$data->{'guarantorid'}); $data->{'address'}=$data2->{'address'}; $data->{'city'}=$data2->{'city'}; $data->{'B_address'}=$data2->{'B_address'}; $data->{'B_city'}=$data2->{'B_city'}; $data->{'phone'}=$data2->{'phone'}; $data->{'mobile'}=$data2->{'mobile'}; $data->{'zipcode'} = $data2->{'zipcode'}; } if ($data->{'ethnicity'} || $data->{'ethnotes'}) { $template->param(printethnicityline => 1); } if ($category_type ne 'C'){ $template->param(isguarantee => 1); # FIXME # It looks like the $i is only being returned to handle walking through # the array, which is probably better done as a foreach loop. # my ($count,$guarantees)=findguarantees($data->{'borrowernumber'}); my @guaranteedata; for (my $i=0;$i<$count;$i++){ push (@guaranteedata, {borrowernumber => $guarantees->[$i]->{'borrowernumber'}, cardnumber => $guarantees->[$i]->{'cardnumber'}, name => $guarantees->[$i]->{'firstname'} . " " . $guarantees->[$i]->{'surname'}}); } $template->param(guaranteeloop => \@guaranteedata); ($template->param(adultborrower=>1)) if ($category_type eq 'A'); } else { my ($guarantorid)=findguarantor($data->{guarantorid}); if ($guarantorid->{'borrowernumber'}){ $template->param(guarantorborrowernumber => $guarantorid->{'borrowernumber'}, guarantorcardnumber => $guarantorid->{'cardnumber'}); } } #Independant branches management my $unvalidlibrarian = ((C4::Context->preference("IndependantBranches")) && (C4::Context->userenv->{flags}!=1) && ($data->{'branchcode'} ne C4::Context->userenv->{branch})); my %bor; $bor{'borrowernumber'}=$bornum; # Converts the branchcode to the branch name my $samebranch; if (C4::Context->preference("IndependantBranches")) { my $userenv = C4::Context->userenv; unless ($userenv->{flags} == 1){ $samebranch = ($data->{'branchcode'} eq $userenv->{branch}); } $samebranch =1 if ($userenv->{flags} == 1); } $data->{'branchname'} = ((getbranchdetail($data->{'branchcode'}))->{'branchname'}); # Converts the categorycode to the description ($data->{'categorycode'},undef,undef) = &getborrowercategory($data->{'categorycode'}); my ($numaccts,$accts,$total)=getboracctrecord('',\%bor); # # current issues # my ($count,$issue)=borrissues($bornum); my $today=ParseDate('today'); my @issuedata; my $totalprice = 0; my $toggle = 0; for (my $i=0;$i<$count;$i++){ my $datedue=ParseDate($issue->[$i]{'date_due'}); $issue->[$i]{'date_due'} = format_date($issue->[$i]{'date_due'}); my %row = %{$issue->[$i]}; $totalprice += $issue->[$i]{'replacementprice'}; $row{'replacementprice'}=$issue->[$i]{'replacementprice'}; if ($datedue < $today){ $row{'red'}=1; #print ""; } $row{toggle} = $toggle++%2; #find the charge for an item # FIXME - This is expecting # &C4::Circulation::Renewals2::calc_charges, but it's getting # &C4::Circulation::Circ2::calc_charges, which only returns one # element, so itemtype isn't being set. # But &C4::Circulation::Renewals2::calc_charges doesn't appear to # return the correct item type either (or a properly-formatted # charge, for that matter). my ($charge,$itemtype)=calc_charges($dbh,$issue->[$i]{'itemnumber'},$bornum); my $itemtypeinfo = getitemtypeinfo($itemtype); $row{'itemtype_description'} = $itemtypeinfo->{description}; $row{'itemtype_image'} = $itemtypeinfo->{imageurl}; $row{'charge'}= sprintf("%.2f",$charge); #check item is not reserved my ($restype,$reserves)=CheckReserves($issue->[$i]{'itemnumber'}); if ($restype){ # print "[$i]{'biblionumber'}>On Request - no renewals"; # } elsif ($issue->[$i]->{'renewals'} > 0) { # print "Previously Renewed - no renewals"; $row{'norenew'}=1; } else { $row{'norenew'}=0; } push (@issuedata, \%row); } # # find reserves # my ($rescount,$reserves)=FindReserves('',$bornum); #From C4::Reserves2 my @reservedata; $toggle = 0; foreach my $reserveline (@$reserves) { $reserveline->{'reservedate2'} = format_date($reserveline->{'reservedate'}); my $restitle; my %row = %$reserveline; $row{toggle} = $toggle++%2; if ($reserveline->{'constrainttype'} eq 'o'){ $restitle=getreservetitle($reserveline->{'biblionumber'},$reserveline->{'borrowernumber'},$reserveline->{'reservedate'},$reserveline->{'rtimestamp'}); %row = (%row , %$restitle) if $restitle; } push (@reservedata, \%row); } # current alert subscriptions my $alerts = getalert($bornum); foreach (@$alerts) { $_->{$_->{type}}=1; $_->{relatedto} = findrelatedto($_->{type},$_->{externalid}); } my $picture; my $htdocs = C4::Context->config('intrahtdocs'); $picture = "/borrowerimages/".$bornum.".jpg"; if (-e $htdocs."$picture") { $template->param(picture => $picture) }; $template->param($data); $template->param( bornum => $bornum, totalprice =>$totalprice, totaldue =>$total, issueloop => \@issuedata, unvalidlibrarian => $unvalidlibrarian, reserveloop => \@reservedata); output_html_with_http_headers $input, $cookie, $template->output;