Bug 4382 Export batch label to CSV
[koha.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 under the
5 # terms of the GNU General Public License as published by the Free Software
6 # Foundation; either version 2 of the License, or (at your option) any later
7 # version.
8 #
9 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
10 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License along
14 # with Koha; if not, write to the Free Software Foundation, Inc.,
15 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
17
18 # Routing.pl script used to create a routing list for a serial subscription
19 # In this instance it is in fact a setting up of a list of reserves for the item
20 # where the hierarchical order can be changed on the fly and a routing list can be
21 # printed out
22 use strict;
23 use CGI;
24 use C4::Auth;
25 use C4::Context;
26 use C4::Output;
27 use C4::Koha;
28 use C4::Acquisition;
29 use C4::Serials;
30
31 my $query = new CGI;
32 my $subscriptionid = $query->param('subscriptionid');
33 my $routingid = $query->param('routingid');
34 my $rank = $query->param('rank');
35
36 reorder_members($subscriptionid,$routingid,$rank);
37
38 print $query->redirect("/cgi-bin/koha/serials/routing.pl?subscriptionid=$subscriptionid");
39