Bug 9978: (followup) Replace license header with the correct license (GPLv3+)
[koha.git] / rotating_collections / transferCollection.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
19 use Modern::Perl;
20
21 use C4::Output;
22 use C4::Auth;
23 use C4::Context;
24 use C4::RotatingCollections;
25 use C4::Branch;
26
27 use CGI qw ( -utf8 );
28
29 my $query = new CGI;
30
31 my $colId    = $query->param('colId');
32 my $toBranch = $query->param('toBranch');
33
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
35     {
36         template_name   => "rotating_collections/transferCollection.tt",
37         query           => $query,
38         type            => "intranet",
39         authnotrequired => 0,
40         flagsrequired   => { tools => 'rotating_collections' },
41         debug           => 1,
42     }
43 );
44
45 ## Transfer collection
46 my ( $success, $errorCode, $errorMessage );
47 if ($toBranch) {
48     ( $success, $errorCode, $errorMessage ) =
49       TransferCollection( $colId, $toBranch );
50
51     if ($success) {
52         $template->param( transferSuccess => 1 );
53     }
54     else {
55         $template->param(
56             transferFailure => 1,
57             errorCode       => $errorCode,
58             errorMessage    => $errorMessage
59         );
60     }
61 }
62
63 ## Set up the toBranch select options
64 my $branches = GetBranches();
65 my @branchoptionloop;
66 foreach my $br ( keys %$branches ) {
67     my %branch;
68     $branch{code} = $br;
69     $branch{name} = $branches->{$br}->{'branchname'};
70     push( @branchoptionloop, \%branch );
71 }
72 @branchoptionloop = sort {$a->{name} cmp $b->{name}} @branchoptionloop;
73
74 ## Get data about collection
75 my ( $colId, $colTitle, $colDesc, $colBranchcode ) = GetCollection($colId);
76 $template->param(
77     colId            => $colId,
78     colTitle         => $colTitle,
79     colDesc          => $colDesc,
80     colBranchcode    => $colBranchcode,
81     branchoptionloop => \@branchoptionloop
82 );
83
84 output_html_with_http_headers $query, $cookie, $template->output;