Bug 29788: Fix batch delete item
[koha.git] / authorities / detail-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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 =head1 NAME
21
22 detail-biblio-search.pl - script to show an authority in MARC format
23
24 =head1 SYNOPSIS
25
26 =cut
27
28 =head1 DESCRIPTION
29
30 This script needs an authid
31
32 It shows the authority in a (nice) MARC format depending on authority MARC
33 parameters tables.
34
35 =head1 FUNCTIONS
36
37 =cut
38
39 use Modern::Perl;
40
41 use C4::Auth qw( get_template_and_user );
42 use C4::AuthoritiesMarc qw( GetAuthority GetTagsLabels );
43 use C4::Context;
44 use C4::Output qw( output_html_with_http_headers );
45 use CGI qw ( -utf8 );
46 # use C4::Biblio;
47 # use C4::Catalogue;
48
49 use Koha::Authorities;
50 use Koha::Authority::Types;
51
52 my $query=CGI->new;
53
54 my $dbh=C4::Context->dbh;
55
56 my $authid = $query->param('authid');
57 my $index = $query->param('index');
58 my $authtypecode = Koha::Authorities->find($authid)->authtypecode;
59 my $tagslib = GetTagsLabels(1,$authtypecode);
60
61 my $record =GetAuthority($authid);
62 # open template
63 my ($template, $loggedinuser, $cookie) = get_template_and_user(
64     {
65         template_name   => "authorities/detail-biblio-search.tt",
66         query           => $query,
67         type            => "intranet",
68         flagsrequired   => { catalogue => 1 },
69     }
70 );
71
72 # fill arrays
73 my @loop_data =();
74 # loop through each tab 0 through 9
75 # for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
76 # loop through each tag
77 my @fields = $record->fields();
78         foreach my $field (@fields) {
79                         my @subfields_data;
80                 # if tag <10, there's no subfield, use the "@" trick
81                 if ($field->tag()<10) {
82 #                       next if ($tagslib->{$field->tag()}->{'@'}->{tab}  ne $tabloop);
83                         next if ($tagslib->{$field->tag()}->{'@'}->{hidden});
84                         my %subfield_data;
85                         $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{'@'}->{lib};
86                         $subfield_data{marc_value}=$field->data();
87                         $subfield_data{marc_subfield}='@';
88                         $subfield_data{marc_tag}=$field->tag();
89                         push(@subfields_data, \%subfield_data);
90                 } else {
91                         my @subf=$field->subfields;
92         # loop through each subfield
93                         for my $i (0..$#subf) {
94                                 $subf[$i][0] = "@" unless defined $subf[$i][0];
95 #                               next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
96                                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{hidden});
97                                 my %subfield_data;
98                                 $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
99                                 if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl}) {
100                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
101                                 } else {
102                                         $subfield_data{marc_value}=$subf[$i][1];
103                                 }
104                                 $subfield_data{marc_subfield}=$subf[$i][0];
105                                 $subfield_data{marc_tag}=$field->tag();
106                                 push(@subfields_data, \%subfield_data);
107                         }
108                 }
109                 if ($#subfields_data>=0) {
110                         my %tag_data;
111                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
112                         $tag_data{subfield} = \@subfields_data;
113                         push (@loop_data, \%tag_data);
114                 }
115         }
116         $template->param("0XX" =>\@loop_data);
117
118 my $authority_types = Koha::Authority::Types->search( {}, { order_by => ['authtypetext'] } );
119
120 $template->param(
121     authid          => $authid,
122     authority_types => $authority_types,
123     index           => $index,
124 );
125 output_html_with_http_headers $query, $cookie, $template->output;
126