Bug 18276: Remove GetBiblioFromItemNumber - Easy ones
[koha-equinox.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 strict;
23 #use warnings; FIXME - Bug 2505
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 Date::Calc qw(Today);
35
36 use MARC::File::XML;
37
38 use Koha::Items;
39
40 my $query = CGI->new;
41
42 # The biblio to move the item to
43 my $biblionumber = $query->param('biblionumber');
44
45 # The barcode of the item to move
46 my $barcode      = $query->param('barcode');
47
48 my ($template, $loggedinuser, $cookie) = get_template_and_user(
49     {
50         template_name   => "cataloguing/moveitem.tt",
51         query           => $query,
52         type            => "intranet",
53         authnotrequired => 0,
54         flagsrequired   => { editcatalogue => 'edit_items' },
55         debug           => 1,
56     }
57 );
58
59
60
61 my $biblio = GetBiblioData($biblionumber);
62 $template->param(bibliotitle => $biblio->{'title'});
63 $template->param(biblionumber => $biblionumber);
64
65 # If we already have the barcode of the item to move and the biblionumber to move the item to
66 if ($barcode && $biblionumber) { 
67
68     my $itemnumber;
69     my $item = Koha::Items->find({ barcode => $barcode });
70
71     if ($item) {
72
73         $itemnumber = $item->itemnumber;
74         my $frombiblionumber = $item->biblionumber;
75
76             my $moveresult = MoveItemFromBiblio($itemnumber, $frombiblionumber, $biblionumber); 
77             if ($moveresult) { 
78                 $template->param(success => 1);
79             } else {
80                 $template->param(error => 1,
81                                  errornonewitem => 1); 
82             }
83
84
85         } else {
86             $template->param(error => 1,
87                              errornoitem => 1);
88         }
89     $template->param(
90                         barcode => $barcode,  
91                         itemnumber => $itemnumber,
92                     );
93
94 } else {
95     $template->param(missingparameter => 1);
96     if (!$barcode)      { $template->param(missingbarcode      => 1); }
97     if (!$biblionumber) { $template->param(missingbiblionumber => 1); }
98 }
99
100
101 output_html_with_http_headers $query, $cookie, $template->output;