fix to avoid an error when removing an authority
[koha.git] / authorities / blinddetail-biblio-search.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 =head1 NAME
21
22 etail.pl : script to show an authority in MARC format
23
24 =head1 SYNOPSIS
25
26
27 =head1 DESCRIPTION
28
29 This script needs an authid
30
31 It shows the authority in a (nice) MARC format depending on authority MARC
32 parameters tables.
33
34 =head1 FUNCTIONS
35
36 =over 2
37
38 =cut
39
40
41 use strict;
42 require Exporter;
43 use C4::AuthoritiesMarc;
44 use C4::Auth;
45 use C4::Context;
46 use C4::Output;
47 use CGI;
48 use MARC::Record;
49 use C4::Koha;
50
51
52 my $query=new CGI;
53
54 my $dbh=C4::Context->dbh;
55
56 my $authid = $query->param('authid');
57 my $index = $query->param('index');
58 my $tagid = $query->param('tagid');
59 my $authtypecode = &GetAuthTypeCode($authid);
60 my $tagslib = &GetTagsLabels(1,$authtypecode);
61
62 my $auth_type = GetAuthType($authtypecode);
63
64 my $record =GetAuthority($authid) if $authid;
65 # open template
66 my ($template, $loggedinuser, $cookie)
67                 = get_template_and_user({template_name => "authorities/blinddetail-biblio-search.tmpl",
68                              query => $query,
69                              type => "intranet",
70                              authnotrequired => 0,
71                              flagsrequired => {editauthorities => 1},
72                              debug => 1,
73                              });
74
75 # fill arrays
76 my @loop_data =();
77 my $tag;
78 my @loop_data =();
79 if ($authid) {
80   foreach my $field ($record->field($auth_type->{auth_tag_to_report})) {
81     my @subfields_data;
82     my @subf=$field->subfields;
83     # loop through each subfield
84     my %result;
85     for my $i (0..$#subf) {
86       $subf[$i][0] = "@" unless $subf[$i][0];
87       $result{$subf[$i][0]}.=$subf[$i][1]."|";
88     }
89     foreach (keys %result) {
90       my %subfield_data;
91       chop $result{$_};
92       $subfield_data{marc_value}=$result{$_};
93       $subfield_data{marc_subfield}=$_;
94 #                       $subfield_data{marc_tag}=$field->tag();
95       push(@subfields_data, \%subfield_data);
96     }
97     if ($#subfields_data>=0) {
98       my %tag_data;
99       $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
100       $tag_data{subfield} = \@subfields_data;
101       push (@loop_data, \%tag_data);
102     }
103   }
104 } else {
105 # authid is empty => the user want to empty the entry.
106   my @subfields_data;
107   foreach my $subfield ('a'..'z') {
108     my %subfield_data;
109     $subfield_data{marc_value}='';
110     $subfield_data{marc_subfield}=$subfield;
111     push(@subfields_data, \%subfield_data);
112   }
113 #       if ($#subfields_data>=0) {
114   my %tag_data;
115 #                       $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
116   $tag_data{subfield} = \@subfields_data;
117   push (@loop_data, \%tag_data);
118 #       }
119 }
120
121 $template->param("0XX" =>\@loop_data);
122
123
124 $template->param(authid => $authid?$authid:"",
125                 index => $index,
126                 tagid => $tagid,
127                 intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
128                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
129                 IntranetNav => C4::Context->preference("IntranetNav"),
130                 );
131 output_html_with_http_headers $query, $cookie, $template->output;
132