Translation for 16.05.02
[koha.git] / rotating_collections / transferCollection.pl
blobfc29a4b8aaa16cc1a46c3ef76c306090e125d532
1 #!/usr/bin/perl
3 # This file is part of Koha.
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.
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.
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>.
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 qw ( -utf8 );
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 ( $colTitle, $colDesc, $colBranchcode );
76 ( $colId, $colTitle, $colDesc, $colBranchcode ) = GetCollection($colId);
77 $template->param(
78 colId => $colId,
79 colTitle => $colTitle,
80 colDesc => $colDesc,
81 colBranchcode => $colBranchcode,
82 branchoptionloop => \@branchoptionloop
85 output_html_with_http_headers $query, $cookie, $template->output;