Merge remote-tracking branch 'origin/new/bug_6291'
[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 under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22 use strict;
23 #use warnings; FIXME - Bug 2505
24 use CGI;
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::Branch;
32 use C4::ClassSource;
33 use C4::Acquisition qw/GetOrderFromItemnumber ModOrder GetOrder ModOrderItem/;
34
35 use Date::Calc qw(Today);
36
37 use MARC::File::XML;
38 my $query = CGI->new;
39
40 # The biblio to move the item to
41 my $biblionumber = $query->param('biblionumber');
42
43 # The barcode of the item to move
44 my $barcode      = $query->param('barcode');
45
46 my ($template, $loggedinuser, $cookie)
47     = get_template_and_user({template_name => "cataloguing/moveitem.tmpl",
48                  query => $query,
49                  type => "intranet",
50                  authnotrequired => 0,
51         flagsrequired   => { editcatalogue => 'edit_items' },
52                  debug => 1,
53                  });
54
55
56
57 my $biblio = GetBiblioData($biblionumber);
58 $template->param(bibliotitle => $biblio->{'title'});
59 $template->param(biblionumber => $biblionumber);
60
61 # If we already have the barcode of the item to move and the biblionumber to move the item to
62 if ($barcode && $biblionumber) { 
63     
64     # We get his itemnumber
65     my $itemnumber = GetItemnumberFromBarcode($barcode);
66
67     if ($itemnumber) {
68         # And then, we get the item
69         my $item = GetItem($itemnumber);
70
71         if ($item) {
72
73             my $results = GetBiblioFromItemNumber($itemnumber, $barcode);
74             my $frombiblionumber = $results->{'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     } else {
90             $template->param(error => 1,
91                              errornoitemnumber => 1);
92
93     }
94     $template->param(
95                         barcode => $barcode,  
96                         itemnumber => $itemnumber,
97                     );
98
99 } else {
100     $template->param(missingparameter => 1);
101     if (!$barcode)      { $template->param(missingbarcode      => 1); }
102     if (!$biblionumber) { $template->param(missingbiblionumber => 1); }
103 }
104
105
106 output_html_with_http_headers $query, $cookie, $template->output;