25014475edb375fbd952784e101364008d035046
[koha.git] / suggestion / add_user_search.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use CGI qw ( -utf8 );
21 use C4::Auth;
22 use C4::Output;
23 use C4::Members;
24
25 use Koha::Patron::Categories;
26
27 my $input = new CGI;
28
29 my $dbh = C4::Context->dbh;
30
31 my ( $template, $loggedinuser, $cookie, $staff_flags ) = get_template_and_user(
32     {   template_name   => "common/patron_search.tt",
33         query           => $input,
34         type            => "intranet",
35         authnotrequired => 0,
36         flagsrequired   => { suggestions => 'suggestions_manage' },
37     }
38 );
39
40 my $q = $input->param('q') || '';
41 my $op = $input->param('op') || '';
42 my $selection_type = $input->param('selection_type') || 'add';
43
44 my $referer = $input->referer();
45
46 # If this script is called by suggestion/suggestion.pl
47 # the patrons to return should be superlibrarian or have the suggestions_manage flag
48 my $search_patrons_with_suggestion_perm_only =
49     ( $referer =~ m|suggestion/suggestion.pl| )
50         ? 1 : 0;
51
52 my $patron_categories = Koha::Patron::Categories->search_limited;
53 $template->param(
54     patrons_with_suggestion_perm_only => $search_patrons_with_suggestion_perm_only,
55     view => ( $input->request_method() eq "GET" ) ? "show_form" : "show_results",
56     columns => ['cardnumber', 'name', 'branch', 'category', 'action'],
57     json_template => 'acqui/tables/members_results.tt',
58     selection_type => $selection_type,
59     alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
60     categories      => $patron_categories,
61     aaSorting       => 1,
62 );
63 output_html_with_http_headers( $input, $cookie, $template->output );