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
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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
());
46 my $subscriptionid = $cgi->param('subscriptionid');
47 my $searchstring = $cgi->param('member');
49 my %categories_dislay;
50 my ($template, $loggedinuser, $cookie);
51 ($template, $loggedinuser, $cookie)
52 = get_template_and_user
({template_name
=> "serials/member-search.tmpl",
56 flagsrequired
=> { serials
=> 'routing' },
59 foreach my $category (@categories){
61 category_description
=>$$category{description
},
62 category_type
=>$$category{category_type
}
64 $categories_dislay{$$category{categorycode
}} = $hash;
67 "AddPatronLists_".C4
::Context
->preference("AddPatronLists")=> "1",
69 if (C4
::Context
->preference("AddPatronLists")=~/code/){
70 $categories[0]->{'first'}=1;
73 my $member=$cgi->param('member');
74 my $orderby=$cgi->param('orderby');
75 $orderby = "surname,firstname" unless $orderby;
76 if (defined $member) {
77 $member =~ s/,//g; #remove any commas from search string
83 if (C4
::Context
->preference("IndependantBranches")){
84 if (C4
::Context
->userenv && C4
::Context
->userenv->{flags
} % 2 !=1 && C4
::Context
->userenv->{'branch'}){
85 $$patron{branchcode
}=C4
::Context
->userenv->{'branch'} unless (C4
::Context
->userenv->{'branch'} eq "insecure");
88 $$patron{firstname
}.="\%" if ($$patron{firstname
});
89 $$patron{surname
}.="\%" if ($$patron{surname
});
92 push @searchpatron, $member if ($member);
93 push @searchpatron, $patron if ( keys %$patron );
94 my $from = ( $startfrom - 1 ) * $resultsperpage;
95 my $to = $from + $resultsperpage;
99 [ { surname
=> 0 }, { firstname
=> 0 } ],
102 [ "firstname", "surname", "email", "othernames", "cardnumber" ],
107 $count = scalar(@
$results);
110 $to=($count>$to?
$to:$count);
112 foreach my $borrower(@
$results[$from..$to-1]){
115 $$borrower{'dateexpiry'}= C4
::Dates
->new($$borrower{'dateexpiry'},'iso')->output('syspref');
120 %{$categories_dislay{$$borrower{categorycode
}}},
122 push(@resultsdata, \
%row);
125 if ($$patron{branchcode
}){
126 foreach my $branch (grep{$_->{value
} eq $$patron{branchcode
}}@
$branches){
127 $$branch{selected
}=1;
130 if ($$patron{categorycode
}){
131 foreach my $category (grep{$_->{categorycode
} eq $$patron{categorycode
}}@categories){
132 $$category{selected
}=1;
137 'orderby' => $orderby,
138 'resultsperpage' => $resultsperpage,
139 'type'=> 'intranet');
141 'member-search.pl?&'
144 map { "$_=$parameters{$_}" } (keys %parameters)
148 paginationbar
=> pagination_bar
(
149 $base_url, int( $count / $resultsperpage ) + 1,
150 $startfrom, 'startfrom'
152 startfrom
=> $startfrom,
153 from
=> ($startfrom-1)*$resultsperpage+1,
155 multipage
=> ($count != $to+1 || $startfrom!=1),
158 branchloop
=>$branches,
159 categoryloop
=>\
@categories,
165 actionname
=> basename
($0),
167 numresults
=> $count,
168 resultsloop
=> \
@resultsdata,
171 output_html_with_http_headers
$cgi, $cookie, $template->output;