Bug 30477: Add new UNIMARC installer translation files
[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( GetMarcBiblio ModBiblio PrepHostMarcField );
28 use C4::Context;
29
30
31 my $query = CGI->new;
32
33 my $biblionumber = $query->param('biblionumber');
34 my $barcode      = $query->param('barcode');
35
36 my ($template, $loggedinuser, $cookie) = get_template_and_user(
37     {
38         template_name   => "cataloguing/linkitem.tt",
39         query           => $query,
40         type            => "intranet",
41         flagsrequired   => { editcatalogue => 'edit_catalogue' },
42     }
43 );
44
45 my $biblio = GetMarcBiblio({ biblionumber => $biblionumber });
46 my $marcflavour = C4::Context->preference("marcflavour");
47 $marcflavour ||="MARC21";
48 if ($marcflavour eq 'MARC21') {
49     $template->param(bibliotitle => $biblio->subfield('245','a'));
50 } elsif ($marcflavour eq 'UNIMARC') {
51     $template->param(bibliotitle => $biblio->subfield('200','a'));
52 }
53
54 $template->param(biblionumber => $biblionumber);
55
56 if ( $barcode && $biblionumber ) {
57
58     my $item = Koha::Items->find( { barcode => $barcode } );
59
60     if ($item) {
61         my $field = PrepHostMarcField( $item->biblio->biblionumber, $item->itemnumber, $marcflavour );
62         $biblio->append_fields($field);
63
64         my $modresult = ModBiblio( $biblio, $biblionumber, '' );
65         if ($modresult) {
66             $template->param( success => 1 );
67         }
68         else {
69             $template->param(
70                 error            => 1,
71                 errornomodbiblio => 1
72             );
73         }
74         $template->param(
75             hostitemnumber => $item->itemnumber,
76         );
77     }
78     else {
79         $template->param(
80             error                 => 1,
81             errornohostitemnumber => 1,
82         );
83     }
84
85     $template->param(
86         barcode        => $barcode,
87     );
88
89 }
90 else {
91     $template->param( missingparameter => 1 );
92     if ( !$barcode )      { $template->param( missingbarcode      => 1 ); }
93     if ( !$biblionumber ) { $template->param( missingbiblionumber => 1 ); }
94 }
95
96
97 output_html_with_http_headers $query, $cookie, $template->output;