Bug 11944: use CGI( -utf8 ) everywhere
[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 under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
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;