Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha-equinox.git] / serials / reorder_members.pl
1 #!/usr/bin/perl
2 # This file is part of Koha.
3 #
4 # Koha is free software; you can redistribute it and/or modify it
5 # under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # Koha is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with Koha; if not, see <http://www.gnu.org/licenses>.
16
17 # Routing.pl script used to create a routing list for a serial subscription
18 # In this instance it is in fact a setting up of a list of reserves for the item
19 # where the hierarchical order can be changed on the fly and a routing list can be
20 # printed out
21 use Modern::Perl;
22 use CGI qw ( -utf8 );
23 use C4::Auth qw( checkauth );
24 use C4::Serials qw( reorder_members );
25
26 my $query          = CGI->new;
27 my $subscriptionid = $query->param('subscriptionid');
28 my $routingid      = $query->param('routingid');
29 my $rank           = $query->param('rank');
30
31 checkauth( $query, 0, { serials => 'routing' }, 'intranet' );
32
33 reorder_members( $subscriptionid, $routingid, $rank );
34
35 print $query->redirect(
36     "/cgi-bin/koha/serials/routing.pl?subscriptionid=$subscriptionid");
37