Bug 28787: (QA follow-up) Remove unused variable
[koha.git] / cataloguing / linkitem.pl
1 #!/usr/bin/perl
2
3 # Link an item belonging to an analytical record, the item barcode needs to be provided
4 #
5 # Copyright 2009 BibLibre, 2010 Nucsoft OSS Labs
6 #
7 # This file is part of Koha.
8 #
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.
13 #
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.
18 #
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>.
21
22 use Modern::Perl;
23
24 use CGI qw ( -utf8 );
25 use C4::Auth qw( get_template_and_user );
26 use C4::Output qw( output_html_with_http_headers );
27 use C4::Biblio qw( ModBiblio PrepHostMarcField );
28 use C4::Context;
29 use Koha::Biblios;
30
31
32 my $query = CGI->new;
33
34 my $biblionumber = $query->param('biblionumber');
35 my $barcode      = $query->param('barcode');
36
37 my ($template, $loggedinuser, $cookie) = get_template_and_user(
38     {
39         template_name   => "cataloguing/linkitem.tt",
40         query           => $query,
41         type            => "intranet",
42         flagsrequired   => { editcatalogue => 'edit_catalogue' },
43     }
44 );
45
46 my $biblio = Koha::Biblios->find($biblionumber);
47 my $record = $biblio->metadata->record;
48 my $marcflavour = C4::Context->preference("marcflavour");
49 $marcflavour ||="MARC21";
50 if ($marcflavour eq 'MARC21') {
51     $template->param(bibliotitle => $record->subfield('245','a'));
52 } elsif ($marcflavour eq 'UNIMARC') {
53     $template->param(bibliotitle => $record->subfield('200','a'));
54 }
55
56 $template->param(biblionumber => $biblionumber);
57
58 if ( $barcode && $biblionumber ) {
59
60     my $item = Koha::Items->find( { barcode => $barcode } );
61
62     if ($item) {
63         my $field = PrepHostMarcField( $item->biblio->biblionumber, $item->itemnumber, $marcflavour );
64         $record->append_fields($field);
65
66         my $modresult = ModBiblio( $record, $biblionumber, '' );
67         if ($modresult) {
68             $template->param( success => 1 );
69         }
70         else {
71             $template->param(
72                 error            => 1,
73                 errornomodbiblio => 1
74             );
75         }
76         $template->param(
77             hostitemnumber => $item->itemnumber,
78         );
79     }
80     else {
81         $template->param(
82             error                 => 1,
83             errornohostitemnumber => 1,
84         );
85     }
86
87     $template->param(
88         barcode        => $barcode,
89     );
90
91 }
92 else {
93     $template->param( missingparameter => 1 );
94     if ( !$barcode )      { $template->param( missingbarcode      => 1 ); }
95     if ( !$biblionumber ) { $template->param( missingbiblionumber => 1 ); }
96 }
97
98
99 output_html_with_http_headers $query, $cookie, $template->output;