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 with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA 02111-1307 USA
34 my $quicksearch = $input->param('quicksearch');
35 my $startfrom = $input->param('startfrom')||1;
36 my $resultsperpage = $input->param('resultsperpage')||C4
::Context
->preference("PatronsPerPage")||20;
38 my ($template, $loggedinuser, $cookie);
40 ($template, $loggedinuser, $cookie)
41 = get_template_and_user
({template_name
=> "members/member-quicksearch-results.tmpl",
45 flagsrequired
=> {borrowers
=> 1},
48 ($template, $loggedinuser, $cookie)
49 = get_template_and_user
({template_name
=> "members/member.tmpl",
53 flagsrequired
=> {borrowers
=> 1},
56 my $theme = $input->param('theme') || "default";
58 my $patron = $input->Vars;
59 foreach (keys %$patron){
60 delete $$patron{$_} unless($$patron{$_});
63 my @categories=C4
::Category
->all;
64 my $branches=(defined $$patron{branchcode
}?GetBranchesLoop
($$patron{branchcode
}):GetBranchesLoop
());
66 my %categories_dislay;
68 foreach my $category (@categories){
70 category_description
=>$$category{description
},
71 category_type
=>$$category{category_type
}
73 $categories_dislay{$$category{categorycode
}} = $hash;
76 "AddPatronLists_".C4
::Context
->preference("AddPatronLists")=> "1",
78 if (C4
::Context
->preference("AddPatronLists")=~/code/){
79 $categories[0]->{'first'}=1;
82 my $member=$input->param('member');
83 my $orderby=$input->param('orderby');
84 $orderby = "surname,firstname" unless $orderby;
85 $member =~ s/,//g; #remove any commas from search string
90 if (C4
::Context
->preference("IndependantBranches")){
91 if (C4
::Context
->userenv && C4
::Context
->userenv->{flags
} % 2 !=1 && C4
::Context
->userenv->{'branch'}){
92 $$patron{branchcode
}=C4
::Context
->userenv->{'branch'} unless (C4
::Context
->userenv->{'branch'} eq "insecure");
95 $$patron{firstname
}.="\%" if ($$patron{firstname
});
96 $$patron{surname
}.="\%" if ($$patron{surname
});
99 push @searchpatron, $member if ($member);
100 push @searchpatron, $patron if (keys %$patron);
101 my $from= ($startfrom-1)*$resultsperpage;
102 my $to=$from+$resultsperpage;
103 #($results)=Search(\@searchpatron,{surname=>1,firstname=>1},[$from,$to],undef,["firstname","surname","email","othernames"] ) if (@searchpatron);
104 ($results)=Search
(\
@searchpatron,{surname
=>1,firstname
=>1},undef,undef,["firstname","surname","email","othernames","cardnumber"],"start_with" ) if (@searchpatron);
106 $count =scalar(@
$results);
109 my $to=($count>$to?
$to:$count);
111 foreach my $borrower(@
$results[$from..$to-1]){
113 my ($od,$issue,$fines)=GetMemberIssuesAndFines
($$borrower{'borrowernumber'});
115 $$borrower{'dateexpiry'}= C4
::Dates
->new($$borrower{'dateexpiry'},'iso')->output('syspref');
120 %{$categories_dislay{$$borrower{categorycode
}}},
123 odissue
=> "$od/$issue",
124 fines
=> sprintf("%.2f",$fines),
126 push(@resultsdata, \
%row);
129 if ($$patron{branchcode
}){
130 foreach my $branch (grep{$_->{value
} eq $$patron{branchcode
}}@
$branches){
131 $$branch{selected
}=1;
134 if ($$patron{categorycode
}){
135 foreach my $category (grep{$_->{categorycode
} eq $$patron{categorycode
}}@categories){
136 $$category{selected
}=1;
141 , 'orderby' => $orderby
142 , 'resultsperpage' => $resultsperpage
143 , 'type'=> 'intranet');
148 map { "$_=$parameters{$_}" } (keys %parameters)
152 paginationbar
=> pagination_bar
(
153 $base_url, int( $count / $resultsperpage ) + 1,
154 $startfrom, 'startfrom'
156 startfrom
=> $startfrom,
157 from
=> ($startfrom-1)*$resultsperpage+1,
159 multipage
=> ($count != $to+1 || $startfrom!=1),
162 branchloop
=>$branches,
163 categoryloop
=>\
@categories,
170 numresults
=> $count,
171 resultsloop
=> \
@resultsdata,
174 output_html_with_http_headers
$input, $cookie, $template->output;