Bug 29723: Add a "Configure table" button for KohaTable tables
[koha.git] / cataloguing / moveitem.pl
1 #!/usr/bin/perl
2
3 # Move an item from a biblio to another
4 #
5 # Copyright 2009 BibLibre
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 use Modern::Perl;
23
24 use CGI qw ( -utf8 );
25 use C4::Auth qw( get_template_and_user );
26 use C4::Output qw( output_html_with_http_headers );
27
28 use Koha::Biblios;
29 use Koha::Items;
30
31 my $query = CGI->new;
32
33 # The biblio to move the item to
34 my $biblionumber = $query->param('biblionumber');
35
36 # The barcode of the item to move
37 my $barcode      = $query->param('barcode');
38
39 my ($template, $loggedinuser, $cookie) = get_template_and_user(
40     {
41         template_name   => "cataloguing/moveitem.tt",
42         query           => $query,
43         type            => "intranet",
44         flagsrequired   => { editcatalogue => 'edit_items' },
45     }
46 );
47
48 my $biblio = Koha::Biblios->find( $biblionumber );
49 $template->param(biblio => $biblio);
50 $template->param(biblionumber => $biblionumber);
51
52 # If we already have the barcode of the item to move and the biblionumber to move the item to
53 if ( $barcode && $biblionumber ) {
54
55     my $itemnumber;
56     my $item = Koha::Items->find( { barcode => $barcode } );
57
58     if ($item) {
59
60         $itemnumber = $item->itemnumber;
61         my $frombiblionumber = $item->biblionumber;
62         my $to_biblio = Koha::Biblios->find($biblionumber);
63
64         my $moveresult = $item->move_to_biblio($to_biblio);
65         if ($moveresult) {
66             $template->param(
67                 success => 1,
68                 from_biblio => Koha::Biblios->find($frombiblionumber),
69             );
70         }
71         else {
72             $template->param(
73                 error          => 1,
74                 errornonewitem => 1
75             );
76         }
77
78     }
79     else {
80         $template->param(
81             error       => 1,
82             errornoitem => 1
83         );
84     }
85     $template->param(
86         barcode    => $barcode,
87         itemnumber => $itemnumber,
88     );
89
90 }
91 else {
92     $template->param( missingparameter => 1 );
93     if ( !$barcode )      { $template->param( missingbarcode      => 1 ); }
94     if ( !$biblionumber ) { $template->param( missingbiblionumber => 1 ); }
95 }
96
97 output_html_with_http_headers $query, $cookie, $template->output;