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