MT3168 : Suggestion budget management
[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 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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 use warnings;
43
44 use C4::AuthoritiesMarc;
45 use C4::Auth;
46 use C4::Context;
47 use C4::Output;
48 use CGI;
49 use MARC::Record;
50 use C4::Koha;
51 # use C4::Biblio;
52 # use C4::Catalogue;
53
54
55 my $query=new CGI;
56
57 my $dbh=C4::Context->dbh;
58
59 my $authid = $query->param('authid');
60 my $index = $query->param('index');
61 my $authtypecode = &GetAuthTypeCode($authid);
62 my $tagslib = &GetTagsLabels(1,$authtypecode);
63
64 my $record =GetAuthority($authid);
65 # open template
66 my ($template, $loggedinuser, $cookie)
67                 = get_template_and_user({template_name => "authorities/detail-biblio-search.tmpl",
68                              query => $query,
69                              type => "intranet",
70                              authnotrequired => 0,
71                              flagsrequired => {catalogue => 1},
72                              debug => 1,
73                              });
74
75 # fill arrays
76 my @loop_data =();
77 # loop through each tab 0 through 9
78 # for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
79 # loop through each tag
80 my @fields = $record->fields();
81         foreach my $field (@fields) {
82                         my @subfields_data;
83                 # if tag <10, there's no subfield, use the "@" trick
84                 if ($field->tag()<10) {
85 #                       next if ($tagslib->{$field->tag()}->{'@'}->{tab}  ne $tabloop);
86                         next if ($tagslib->{$field->tag()}->{'@'}->{hidden});
87                         my %subfield_data;
88                         $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{'@'}->{lib};
89                         $subfield_data{marc_value}=$field->data();
90                         $subfield_data{marc_subfield}='@';
91                         $subfield_data{marc_tag}=$field->tag();
92                         push(@subfields_data, \%subfield_data);
93                 } else {
94                         my @subf=$field->subfields;
95         # loop through each subfield
96                         for my $i (0..$#subf) {
97                                 $subf[$i][0] = "@" unless $subf[$i][0];
98 #                               next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
99                                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{hidden});
100                                 my %subfield_data;
101                                 $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
102                                 if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl}) {
103                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
104                                 } else {
105                                         $subfield_data{marc_value}=$subf[$i][1];
106                                 }
107                                 $subfield_data{marc_subfield}=$subf[$i][0];
108                                 $subfield_data{marc_tag}=$field->tag();
109                                 push(@subfields_data, \%subfield_data);
110                         }
111                 }
112                 if ($#subfields_data>=0) {
113                         my %tag_data;
114                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
115                         $tag_data{subfield} = \@subfields_data;
116                         push (@loop_data, \%tag_data);
117                 }
118         }
119         $template->param("0XX" =>\@loop_data);
120
121 my $authtypes = getauthtypes;
122 my @authtypesloop;
123 foreach my $thisauthtype (keys %$authtypes) {
124         my %row =(value => $thisauthtype,
125                                 selected => $thisauthtype eq $authtypecode,
126                                 authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},
127                         );
128         push @authtypesloop, \%row;
129 }
130
131 $template->param(authid => $authid,
132                 authtypesloop => \@authtypesloop, index => $index,
133                 );
134 output_html_with_http_headers $query, $cookie, $template->output;
135