Bug 16554: More i18n changes - en, es, nb and pl files
[koha.git] / cataloguing / moveitem.pl
blob79736a60346ec9054bf519d17683f66fee46b514
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
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.
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.
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>.
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/;
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) = get_template_and_user(
47 template_name => "cataloguing/moveitem.tt",
48 query => $query,
49 type => "intranet",
50 authnotrequired => 0,
51 flagsrequired => { editcatalogue => 'edit_items' },
52 debug => 1,
58 my $biblio = GetBiblioData($biblionumber);
59 $template->param(bibliotitle => $biblio->{'title'});
60 $template->param(biblionumber => $biblionumber);
62 # If we already have the barcode of the item to move and the biblionumber to move the item to
63 if ($barcode && $biblionumber) {
65 # We get his itemnumber
66 my $itemnumber = GetItemnumberFromBarcode($barcode);
68 if ($itemnumber) {
69 # And then, we get the item
70 my $item = GetItem($itemnumber);
72 if ($item) {
74 my $results = GetBiblioFromItemNumber($itemnumber, $barcode);
75 my $frombiblionumber = $results->{'biblionumber'};
77 my $moveresult = MoveItemFromBiblio($itemnumber, $frombiblionumber, $biblionumber);
78 if ($moveresult) {
79 $template->param(success => 1);
80 } else {
81 $template->param(error => 1,
82 errornonewitem => 1);
86 } else {
87 $template->param(error => 1,
88 errornoitem => 1);
90 } else {
91 $template->param(error => 1,
92 errornoitemnumber => 1);
95 $template->param(
96 barcode => $barcode,
97 itemnumber => $itemnumber,
100 } else {
101 $template->param(missingparameter => 1);
102 if (!$barcode) { $template->param(missingbarcode => 1); }
103 if (!$biblionumber) { $template->param(missingbiblionumber => 1); }
107 output_html_with_http_headers $query, $cookie, $template->output;