Bug 21985: Fix further occurences
[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;
26 use C4::Output;
27 use C4::Biblio;
28 use C4::Items;
29 use C4::Context;
30 use C4::Koha;
31 use C4::ClassSource;
32 use C4::Acquisition qw/GetOrderFromItemnumber ModOrder GetOrder/;
33
34 use Koha::Biblios;
35
36 use Date::Calc qw(Today);
37
38 use MARC::File::XML;
39
40 use Koha::Items;
41
42 my $query = CGI->new;
43
44 # The biblio to move the item to
45 my $biblionumber = $query->param('biblionumber');
46
47 # The barcode of the item to move
48 my $barcode      = $query->param('barcode');
49
50 my ($template, $loggedinuser, $cookie) = get_template_and_user(
51     {
52         template_name   => "cataloguing/moveitem.tt",
53         query           => $query,
54         type            => "intranet",
55         authnotrequired => 0,
56         flagsrequired   => { editcatalogue => 'edit_items' },
57         debug           => 1,
58     }
59 );
60
61
62
63 my $biblio = Koha::Biblios->find( $biblionumber );
64 $template->param(biblio => $biblio);
65 $template->param(biblionumber => $biblionumber);
66
67 # If we already have the barcode of the item to move and the biblionumber to move the item to
68 if ( $barcode && $biblionumber ) {
69
70     my $itemnumber;
71     my $item = Koha::Items->find( { barcode => $barcode } );
72
73     if ($item) {
74
75         $itemnumber = $item->itemnumber;
76         my $frombiblionumber = $item->biblionumber;
77
78         my $moveresult = MoveItemFromBiblio( $itemnumber, $frombiblionumber, $biblionumber );
79         if ($moveresult) {
80             $template->param(
81                 success => 1,
82                 from_biblio => scalar Koha::Biblios->find($frombiblionumber),
83             );
84         }
85         else {
86             $template->param(
87                 error          => 1,
88                 errornonewitem => 1
89             );
90         }
91
92     }
93     else {
94         $template->param(
95             error       => 1,
96             errornoitem => 1
97         );
98     }
99     $template->param(
100         barcode    => $barcode,
101         itemnumber => $itemnumber,
102     );
103
104 }
105 else {
106     $template->param( missingparameter => 1 );
107     if ( !$barcode )      { $template->param( missingbarcode      => 1 ); }
108     if ( !$biblionumber ) { $template->param( missingbiblionumber => 1 ); }
109 }
110
111
112 output_html_with_http_headers $query, $cookie, $template->output;