Bug 11349: Change .tmpl -> .tt in scripts using templates
[koha-equinox.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 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.
13 #
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.
17 #
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.
21
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;
31
32
33 my $query = CGI->new;
34
35 my $biblionumber = $query->param('biblionumber');
36 my $barcode      = $query->param('barcode');
37
38 my ($template, $loggedinuser, $cookie) = get_template_and_user(
39     {
40         template_name   => "cataloguing/linkitem.tt",
41         query           => $query,
42         type            => "intranet",
43         authnotrequired => 0,
44         flagsrequired   => { editcatalogue => 'edit_catalogue' },
45         debug           => 1,
46     }
47 );
48
49 my $biblio = GetMarcBiblio($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'));
56 }
57
58 $template->param(biblionumber => $biblionumber);
59
60 if ($barcode && $biblionumber) { 
61     
62     # We get the host itemnumber
63     my $hostitemnumber = GetItemnumberFromBarcode($barcode);
64
65     if ($hostitemnumber) {
66         my $hostbiblionumber = GetBiblionumberFromItemnumber($hostitemnumber);
67
68         if ($hostbiblionumber) {
69                 my $field = PrepHostMarcField($hostbiblionumber, $hostitemnumber,$marcflavour);
70                 $biblio->append_fields($field);
71
72                 my $modresult = ModBiblio($biblio, $biblionumber, ''); 
73                 if ($modresult) { 
74                         $template->param(success => 1);
75                 } else {
76                         $template->param(error => 1,
77                                          errornomodbiblio => 1); 
78                 }
79         } else {
80                 $template->param(error => 1,
81                                      errornohostbiblionumber => 1);
82         }
83     } else {
84             $template->param(error => 1,
85                              errornohostitemnumber => 1);
86
87     }
88     $template->param(
89                         barcode => $barcode,  
90                         hostitemnumber => $hostitemnumber,
91                     );
92
93 } else {
94     $template->param(missingparameter => 1);
95     if (!$barcode)      { $template->param(missingbarcode      => 1); }
96     if (!$biblionumber) { $template->param(missingbiblionumber => 1); }
97 }
98
99
100 output_html_with_http_headers $query, $cookie, $template->output;