Bug 17670: Grammar mistakes - effect vs affect
[koha.git] / cataloguing / linkitem.pl
blob082c7b0e1f84d5903fbc6875b233a3b79ce1295f
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
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 CGI qw ( -utf8 );
24 use C4::Auth;
25 use C4::Output;
26 use C4::Biblio;
27 use C4::Items;
28 use C4::Context;
29 use C4::Koha;
32 my $query = CGI->new;
34 my $biblionumber = $query->param('biblionumber');
35 my $barcode = $query->param('barcode');
37 my ($template, $loggedinuser, $cookie) = get_template_and_user(
39 template_name => "cataloguing/linkitem.tt",
40 query => $query,
41 type => "intranet",
42 authnotrequired => 0,
43 flagsrequired => { editcatalogue => 'edit_catalogue' },
44 debug => 1,
48 my $biblio = GetMarcBiblio($biblionumber);
49 my $marcflavour = C4::Context->preference("marcflavour");
50 $marcflavour ||="MARC21";
51 if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC') {
52 $template->param(bibliotitle => $biblio->subfield('245','a'));
53 } elsif ($marcflavour eq 'UNIMARC') {
54 $template->param(bibliotitle => $biblio->subfield('200','a'));
57 $template->param(biblionumber => $biblionumber);
59 if ($barcode && $biblionumber) {
61 # We get the host itemnumber
62 my $hostitemnumber = GetItemnumberFromBarcode($barcode);
64 if ($hostitemnumber) {
65 my $hostbiblionumber = GetBiblionumberFromItemnumber($hostitemnumber);
67 if ($hostbiblionumber) {
68 my $field = PrepHostMarcField($hostbiblionumber, $hostitemnumber,$marcflavour);
69 $biblio->append_fields($field);
71 my $modresult = ModBiblio($biblio, $biblionumber, '');
72 if ($modresult) {
73 $template->param(success => 1);
74 } else {
75 $template->param(error => 1,
76 errornomodbiblio => 1);
78 } else {
79 $template->param(error => 1,
80 errornohostbiblionumber => 1);
82 } else {
83 $template->param(error => 1,
84 errornohostitemnumber => 1);
87 $template->param(
88 barcode => $barcode,
89 hostitemnumber => $hostitemnumber,
92 } else {
93 $template->param(missingparameter => 1);
94 if (!$barcode) { $template->param(missingbarcode => 1); }
95 if (!$biblionumber) { $template->param(missingbiblionumber => 1); }
99 output_html_with_http_headers $query, $cookie, $template->output;