4 #script to do a borrower enquiry/bring up borrower details etc
5 #written 20/12/99 by chris@katipo.co.nz
8 # Copyright 2000-2002 Katipo Communications
10 # This file is part of Koha.
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License along
22 # with Koha; if not, write to the Free Software Foundation, Inc.,
23 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #use warnings; FIXME - Bug 2505
37 my $quicksearch = $input->param('quicksearch');
38 my $startfrom = $input->param('startfrom')||1;
39 my $resultsperpage = $input->param('resultsperpage')||C4
::Context
->preference("PatronsPerPage")||20;
41 my ($template, $loggedinuser, $cookie)
42 = get_template_and_user
({template_name
=> "members/member.tmpl",
46 flagsrequired
=> {borrowers
=> 1},
49 my $theme = $input->param('theme') || "default";
51 my $patron = $input->Vars;
52 foreach (keys %$patron){
53 delete $$patron{$_} unless($$patron{$_});
56 my @categories=C4
::Category
->all;
57 my $branches=(defined $$patron{branchcode
}?GetBranchesLoop
($$patron{branchcode
}):GetBranchesLoop
());
59 my %categories_dislay;
61 foreach my $category (@categories){
63 category_description
=>$$category{description
},
64 category_type
=>$$category{category_type
}
66 $categories_dislay{$$category{categorycode
}} = $hash;
69 "AddPatronLists_".C4
::Context
->preference("AddPatronLists")=> "1",
71 if (C4
::Context
->preference("AddPatronLists")=~/code/){
72 $categories[0]->{'first'}=1;
75 my $member=$input->param('member');
76 my $orderbyparams=$input->param('orderby');
79 my @orderbyelt=split(/,/,$orderbyparams);
80 push @orderby, {$orderbyelt[0]=>$orderbyelt[1]||0};
83 @orderby = ({surname
=>0},{firstname
=>0});
86 $member =~ s/,//g; #remove any commas from search string
92 push @searchpatron, $member if ($member);
93 push @searchpatron, $patron if (keys %$patron);
94 my $from= ($startfrom-1)*$resultsperpage;
95 my $to=$from+$resultsperpage;
96 #($results)=Search(\@searchpatron,{surname=>1,firstname=>1},[$from,$to],undef,["firstname","surname","email","othernames"] ) if (@searchpatron);
97 my $search_scope=($quicksearch?
"field_start_with":"contain");
98 ($results)=Search
(\
@searchpatron,\
@orderby,undef,undef,["firstname","surname","email","othernames","cardnumber","userid"],$search_scope ) if (@searchpatron);
100 $count =scalar(@
$results);
103 my $to=($count>$to?
$to:$count);
105 foreach my $borrower(@
$results[$from..$to-1]){
107 my ($od,$issue,$fines)=GetMemberIssuesAndFines
($$borrower{'borrowernumber'});
109 $$borrower{'dateexpiry'}= C4
::Dates
->new($$borrower{'dateexpiry'},'iso')->output('syspref');
114 %{$categories_dislay{$$borrower{categorycode
}}},
117 odissue
=> "$od/$issue",
118 fines
=> sprintf("%.2f",$fines),
120 push(@resultsdata, \
%row);
123 if ($$patron{branchcode
}){
124 foreach my $branch (grep{$_->{value
} eq $$patron{branchcode
}}@
$branches){
125 $$branch{selected
}=1;
128 if ($$patron{categorycode
}){
129 foreach my $category (grep{$_->{categorycode
} eq $$patron{categorycode
}}@categories){
130 $$category{selected
}=1;
135 , 'orderby' => $orderbyparams
136 , 'resultsperpage' => $resultsperpage
137 , 'type'=> 'intranet');
142 map { "$_=$parameters{$_}" } (keys %parameters)
145 my @letters = map { {letter
=> $_} } ( 'A' .. 'Z');
146 $template->param( letters
=> \
@letters );
149 paginationbar
=> pagination_bar
(
151 int( $count / $resultsperpage ) + ($count % $resultsperpage ?
1 : 0),
152 $startfrom, 'startfrom'
154 startfrom
=> $startfrom,
155 from
=> ($startfrom-1)*$resultsperpage+1,
157 multipage
=> ($count != $to+1 || $startfrom!=1),
160 branchloop
=>$branches,
161 categoryloop
=>\
@categories,
167 actionname
=>basename
($0),
169 numresults
=> $count,
170 resultsloop
=> \
@resultsdata,
173 output_html_with_http_headers
$input, $cookie, $template->output;