Bug 8836 - Resurrect Rotating Collections
[koha.git] / rotating_collections / transferCollection.pl
blob630c222eb0386e6ed672ac0baef5ba14dc63fa84
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.tmpl",
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 );
73 ## Get data about collection
74 my ( $colId, $colTitle, $colDesc, $colBranchcode ) = GetCollection($colId);
75 $template->param(
76 intranetcolorstylesheet =>
77 C4::Context->preference("intranetcolorstylesheet"),
78 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
79 IntranetNav => C4::Context->preference("IntranetNav"),
81 colId => $colId,
82 colTitle => $colTitle,
83 colDesc => $colDesc,
84 colBranchcode => $colBranchcode,
85 branchoptionloop => \@branchoptionloop
88 output_html_with_http_headers $query, $cookie, $template->output;