Fix errors on Korean translation files
[koha.git] / rotating_collections / transferCollection.pl
blob2a04857e6e795b693c2203ec151a011abbe46d2e
1 #!/usr/bin/perl
3 # This file is part of Koha.
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.
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.
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
19 use Modern::Perl;
21 use C4::Output;
22 use C4::Auth;
23 use C4::Context;
24 use C4::RotatingCollections;
25 use C4::Branch;
27 use CGI;
29 my $query = new CGI;
31 my $colId = $query->param('colId');
32 my $toBranch = $query->param('toBranch');
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36 template_name => "rotating_collections/transferCollection.tt",
37 query => $query,
38 type => "intranet",
39 authnotrequired => 0,
40 flagsrequired => { tools => 'rotating_collections' },
41 debug => 1,
45 ## Transfer collection
46 my ( $success, $errorCode, $errorMessage );
47 if ($toBranch) {
48 ( $success, $errorCode, $errorMessage ) =
49 TransferCollection( $colId, $toBranch );
51 if ($success) {
52 $template->param( transferSuccess => 1 );
54 else {
55 $template->param(
56 transferFailure => 1,
57 errorCode => $errorCode,
58 errorMessage => $errorMessage
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 );
72 @branchoptionloop = sort {$a->{name} cmp $b->{name}} @branchoptionloop;
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
84 output_html_with_http_headers $query, $cookie, $template->output;