Bug 6679 - [SIGNED-OFF] fix 3 perlcritic violations in C4/Message.pm
[koha.git] / cataloguing / linkitem.pl
blob9b632f1af097d169d01449426af1dc55622b9f49
1 #!/usr/bin/perl
3 # Link an item belonging to an analytical record, the item barcode needs to be provided
5 # Copyright 2009 BibLibre, 2010 Nucsoft OSS Labs
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
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 use strict;
23 use CGI;
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;
33 my $query = CGI->new;
35 my $biblionumber = $query->param('biblionumber');
36 my $barcode = $query->param('barcode');
38 my ($template, $loggedinuser, $cookie)
39 = get_template_and_user({template_name => "cataloguing/linkitem.tmpl",
40 query => $query,
41 type => "intranet",
42 authnotrequired => 0,
43 flagsrequired => {editcatalogue => 'edit_catalogue'},
44 debug => 1,
45 });
47 my $biblio = GetMarcBiblio($biblionumber);
48 my $marcflavour = C4::Context->preference("marcflavour");
49 $marcflavour ||="MARC21";
50 if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC') {
51 $template->param(bibliotitle => $biblio->subfield('245','a'));
52 } elsif ($marcflavour eq 'UNIMARC') {
53 $template->param(bibliotitle => $biblio->subfield('200','a'));
56 $template->param(biblionumber => $biblionumber);
58 if ($barcode && $biblionumber) {
60 # We get the host itemnumber
61 my $hostitemnumber = GetItemnumberFromBarcode($barcode);
63 if ($hostitemnumber) {
64 my $hostbiblionumber = GetBiblionumberFromItemnumber($hostitemnumber);
66 if ($hostbiblionumber) {
67 my $field = PrepHostMarcField($hostbiblionumber, $hostitemnumber,$marcflavour);
68 $biblio->append_fields($field);
70 my $modresult = ModBiblio($biblio, $biblionumber, '');
71 if ($modresult) {
72 $template->param(success => 1);
73 } else {
74 $template->param(error => 1,
75 errornomodbiblio => 1);
77 } else {
78 $template->param(error => 1,
79 errornohostbiblionumber => 1);
81 } else {
82 $template->param(error => 1,
83 errornohostitemnumber => 1);
86 $template->param(
87 barcode => $barcode,
88 hostitemnumber => $hostitemnumber,
91 } else {
92 $template->param(missingparameter => 1);
93 if (!$barcode) { $template->param(missingbarcode => 1); }
94 if (!$biblionumber) { $template->param(missingbiblionumber => 1); }
98 output_html_with_http_headers $query, $cookie, $template->output;