Bug 10565: Add a "Patron List" feature for storing and manipulating collections of...
[koha.git] / patron_lists / list.pl
1 #!/usr/bin/perl
2
3 # Copyright 2013 ByWater Solutions
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use Modern::Perl;
21
22 use CGI;
23
24 use C4::Auth;
25 use C4::Output;
26 use Koha::List::Patron;
27
28 my $cgi = new CGI;
29
30 my ( $template, $logged_in_user, $cookie ) = get_template_and_user(
31     {
32         template_name   => "patron_lists/list.tt",
33         query           => $cgi,
34         type            => "intranet",
35         authnotrequired => 1,
36     }
37 );
38
39 my ($list) =
40   GetPatronLists( { patron_list_id => $cgi->param('patron_list_id') } );
41
42 my @patrons_to_add = $cgi->param('patrons_to_add');
43 if (@patrons_to_add) {
44     AddPatronsToList( { list => $list, cardnumbers => \@patrons_to_add } );
45 }
46
47 my @patrons_to_remove = $cgi->param('patrons_to_remove');
48 if (@patrons_to_remove) {
49     DelPatronsFromList( { list => $list, patron_list_patrons => \@patrons_to_remove } );
50 }
51
52 $template->param( list => $list );
53
54 output_html_with_http_headers( $cgi, $cookie, $template->output );