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>.
35 my $biblionumber = $query->param('biblionumber');
36 my $barcode = $query->param('barcode');
38 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
40 template_name
=> "cataloguing/linkitem.tt",
44 flagsrequired
=> { editcatalogue
=> 'edit_catalogue' },
49 my $biblio = GetMarcBiblio
({ biblionumber
=> $biblionumber });
50 my $marcflavour = C4
::Context
->preference("marcflavour");
51 $marcflavour ||="MARC21";
52 if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC') {
53 $template->param(bibliotitle
=> $biblio->subfield('245','a'));
54 } elsif ($marcflavour eq 'UNIMARC') {
55 $template->param(bibliotitle
=> $biblio->subfield('200','a'));
58 $template->param(biblionumber
=> $biblionumber);
60 if ( $barcode && $biblionumber ) {
62 my $item = Koha
::Items
->find( { barcode
=> $barcode } );
65 my $field = PrepHostMarcField
( $item->biblio->biblionumber, $item->itemnumber, $marcflavour );
66 $biblio->append_fields($field);
68 my $modresult = ModBiblio
( $biblio, $biblionumber, '' );
70 $template->param( success
=> 1 );
79 hostitemnumber
=> $item->itemnumber,
85 errornohostitemnumber
=> 1,
95 $template->param( missingparameter
=> 1 );
96 if ( !$barcode ) { $template->param( missingbarcode
=> 1 ); }
97 if ( !$biblionumber ) { $template->param( missingbiblionumber
=> 1 ); }
101 output_html_with_http_headers
$query, $cookie, $template->output;