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