Follow up for new translation wrapper
[koha.git] / cataloguing / moveitem.pl
blob1548b601d933fbe0d173238c822d41ca8ab7ecf0
1 #!/usr/bin/perl
3 # Move an item from a biblio to another
5 # Copyright 2009 BibLibre
7 # This file is part of Koha.
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.
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.
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA 02111-1307 USA
22 use CGI;
23 use strict;
24 use C4::Auth;
25 use C4::Output;
26 use C4::Biblio;
27 use C4::Items;
28 use C4::Context;
29 use C4::Koha;
30 use C4::Branch;
31 use C4::ClassSource;
32 use C4::Acquisition qw/GetOrderFromItemnumber ModOrder GetOrder ModOrderItem/;
34 use Date::Calc qw(Today);
36 use MARC::File::XML;
37 my $query = CGI->new;
39 # The biblio to move the item to
40 my $biblionumber = $query->param('biblionumber');
42 # The barcode of the item to move
43 my $barcode = $query->param('barcode');
45 my ($template, $loggedinuser, $cookie)
46 = get_template_and_user({template_name => "cataloguing/moveitem.tmpl",
47 query => $query,
48 type => "intranet",
49 authnotrequired => 0,
50 flagsrequired => {editcatalogue => 'edit_catalogue'},
51 debug => 1,
52 });
56 my $biblio = GetBiblioData($biblionumber);
57 $template->param(bibliotitle => $biblio->{'title'});
58 $template->param(biblionumber => $biblionumber);
60 # If we already have the barcode of the item to move and the biblionumber to move the item to
61 if ($barcode && $biblionumber) {
63 # We get his itemnumber
64 my $itemnumber = GetItemnumberFromBarcode($barcode);
66 if ($itemnumber) {
67 # And then, we get the item
68 my $item = GetItem($itemnumber);
70 if ($item) {
72 my $results = GetBiblioFromItemNumber($itemnumber, $barcode);
73 my $frombiblionumber = $results->{'biblionumber'};
75 my $moveresult = MoveItemFromBiblio($itemnumber, $frombiblionumber, $biblionumber);
76 if ($moveresult) {
77 $template->param(success => 1);
78 } else {
79 $template->param(error => 1,
80 errornonewitem => 1);
84 } else {
85 $template->param(error => 1,
86 errornoitem => 1);
88 } else {
89 $template->param(error => 1,
90 errornoitemnumber => 1);
93 $template->param(
94 barcode => $barcode,
95 itemnumber => $itemnumber,
98 } else {
99 $template->param(missingparameter => 1);
100 if (!$barcode) { $template->param(missingbarcode => 1); }
101 if (!$biblionumber) { $template->param(missingbiblionumber => 1); }
105 output_html_with_http_headers $query, $cookie, $template->output;