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
9 # Copyright 2013 BibLibre
11 # This file is part of Koha.
13 # Koha is free software; you can redistribute it and/or modify it
14 # under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 3 of the License, or
16 # (at your option) any later version.
18 # Koha is distributed in the hope that it will be useful, but
19 # WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License
24 # along with Koha; if not, see <http://www.gnu.org/licenses>.
30 use C4
::Members
qw( GetMember );
32 use Koha
::List
::Patron
;
36 my ($template, $loggedinuser, $cookie)
37 = get_template_and_user
({template_name
=> "members/member.tt",
41 flagsrequired
=> {borrowers
=> 1},
44 my $theme = $input->param('theme') || "default";
46 my $searchmember = $input->param('searchmember');
47 my $quicksearch = $input->param('quicksearch') // 0;
49 if ( $quicksearch and $searchmember ) {
51 if ( C4
::Context
::only_my_library
) {
52 my $userenv = C4
::Context
->userenv;
53 $branchcode = $userenv->{'branch'};
55 my $member = GetMember
(
56 cardnumber
=> $searchmember,
57 ( $branchcode ?
( branchcode
=> $branchcode ) : () ),
60 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=" . $member->{borrowernumber
});
65 my $searchfieldstype = $input->param('searchfieldstype') || 'standard';
67 $template->param( 'alphabet' => C4
::Context
->preference('alphabet') || join ' ', 'A' .. 'Z' );
69 my $view = $input->request_method() eq "GET" ?
"show_form" : "show_results";
72 patron_lists
=> [ GetPatronLists
() ],
73 searchmember
=> $searchmember,
74 branchcode_filter
=> scalar $input->param('branchcode_filter'),
75 categorycode_filter
=> scalar $input->param('categorycode_filter'),
76 searchtype
=> scalar $input->param('searchtype') || 'contain',
77 searchfieldstype
=> $searchfieldstype,
78 PatronsPerPage
=> C4
::Context
->preference("PatronsPerPage") || 20,
82 output_html_with_http_headers
$input, $cookie, $template->output;