3 # This file is part of Koha.
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
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.
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
18 =head1 member-search.pl
20 Member Search.pl script used to search for members to add to a routing list
27 use C4
::Auth
; # get_template_and_user
29 use C4
::Members
; # BornameSearch
35 my $theme = $cgi->param('theme') || "default";
36 my $resultsperpage = $cgi->param('resultsperpage')||C4
::Context
->preference("PatronsPerPage")||20;
37 my $startfrom = $cgi->param('startfrom')||1;
39 my $patron = $cgi->Vars;
40 foreach (keys %$patron){
41 delete $$patron{$_} unless($$patron{$_});
44 my @categories=C4
::Category
->all;
45 my $branches=(defined $$patron{branchcode
}?GetBranchesLoop
($$patron{branchcode
}):GetBranchesLoop
());
47 my %categories_dislay;
48 my ($template, $loggedinuser, $cookie);
49 ($template, $loggedinuser, $cookie)
50 = get_template_and_user
({template_name
=> "serials/member-search.tmpl",
54 flagsrequired
=> {borrowers
=> 1},
57 foreach my $category (@categories){
59 category_description
=>$$category{description
},
60 category_type
=>$$category{category_type
}
62 $categories_dislay{$$category{categorycode
}} = $hash;
65 "AddPatronLists_".C4
::Context
->preference("AddPatronLists")=> "1",
67 if (C4
::Context
->preference("AddPatronLists")=~/code/){
68 $categories[0]->{'first'}=1;
71 my $member=$cgi->param('member');
72 my $orderby=$cgi->param('orderby');
73 $orderby = "surname,firstname" unless $orderby;
74 $member =~ s/,//g; #remove any commas from search string
79 if (C4
::Context
->preference("IndependantBranches")){
80 if (C4
::Context
->userenv && C4
::Context
->userenv->{flags
} % 2 !=1 && C4
::Context
->userenv->{'branch'}){
81 $$patron{branchcode
}=C4
::Context
->userenv->{'branch'} unless (C4
::Context
->userenv->{'branch'} eq "insecure");
84 $$patron{firstname
}.="\%" if ($$patron{firstname
});
85 $$patron{surname
}.="\%" if ($$patron{surname
});
88 push @searchpatron, $member if ($member);
89 push @searchpatron, $patron if (keys %$patron);
90 my $from= ($startfrom-1)*$resultsperpage;
91 my $to=$from+$resultsperpage;
92 #($results)=Search(\@searchpatron,{surname=>1,firstname=>1},[$from,$to],undef,["firstname","surname","email","othernames"] ) if (@searchpatron);
93 ($results)=Search
(\
@searchpatron,{surname
=>1,firstname
=>1},undef,undef,["firstname","surname","email","othernames","cardnumber"],"start_with" ) if (@searchpatron);
95 $count =scalar(@
$results);
98 my $to=($count>$to?
$to:$count);
100 foreach my $borrower(@
$results[$from..$to-1]){
103 $$borrower{'dateexpiry'}= C4
::Dates
->new($$borrower{'dateexpiry'},'iso')->output('syspref');
108 %{$categories_dislay{$$borrower{categorycode
}}},
110 push(@resultsdata, \
%row);
113 if ($$patron{branchcode
}){
114 foreach my $branch (grep{$_->{value
} eq $$patron{branchcode
}}@
$branches){
115 $$branch{selected
}=1;
118 if ($$patron{categorycode
}){
119 foreach my $category (grep{$_->{categorycode
} eq $$patron{categorycode
}}@categories){
120 $$category{selected
}=1;
125 , 'orderby' => $orderby
126 , 'resultsperpage' => $resultsperpage
127 , 'type'=> 'intranet');
129 'member-search.pl?&'
132 map { "$_=$parameters{$_}" } (keys %parameters)
136 paginationbar
=> pagination_bar
(
137 $base_url, int( $count / $resultsperpage ) + 1,
138 $startfrom, 'startfrom'
140 startfrom
=> $startfrom,
141 from
=> ($startfrom-1)*$resultsperpage+1,
143 multipage
=> ($count != $to+1 || $startfrom!=1),
146 branchloop
=>$branches,
147 categoryloop
=>\
@categories,
153 actionname
=> basename
($0),
155 numresults
=> $count,
156 resultsloop
=> \
@resultsdata,
159 output_html_with_http_headers
$cgi, $cookie, $template->output;