minor synch'ing (but default template is deprecated in OPAC, CSS is the up2date one)
[koha.git] / MARCdetail.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 MARCdetail.pl : script to show a biblio in MARC format
23
24 =head1 SYNOPSIS
25
26
27 =head1 DESCRIPTION
28
29 This script needs a biblionumber in bib parameter (bibnumber
30 from koha style DB.  Automaticaly maps to marc biblionumber).
31
32 It shows the biblio in a (nice) MARC format depending on MARC
33 parameters tables.
34
35 The template is in <templates_dir>/catalogue/MARCdetail.tmpl.
36 this template must be divided into 11 "tabs".
37
38 The first 10 tabs present the biblio, the 11th one presents
39 the items attached to the biblio
40
41 =head1 FUNCTIONS
42
43 =over 2
44
45 =cut
46
47
48 use strict;
49 require Exporter;
50 use C4::Auth;
51 use C4::Context;
52 use C4::Output;
53 use C4::Interface::CGI::Output;
54 use CGI;
55 use C4::Search;
56 use MARC::Record;
57 use C4::Biblio;
58 use C4::Catalogue;
59 use HTML::Template;
60
61 my $query=new CGI;
62
63 my $dbh=C4::Context->dbh;
64
65 my $biblionumber=$query->param('bib');
66 my $bibid = $query->param('bibid');
67 $bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless $bibid;
68 $biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless $biblionumber;
69 my $itemtype = &MARCfind_itemtype($dbh,$bibid);
70 warn "IT : $itemtype";
71 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
72
73 my $record =MARCgetbiblio($dbh,$bibid);
74 # open template
75 my ($template, $loggedinuser, $cookie)
76                 = get_template_and_user({template_name => "catalogue/MARCdetail.tmpl",
77                              query => $query,
78                              type => "intranet",
79                              authnotrequired => 0,
80                              flagsrequired => {catalogue => 1},
81                              debug => 1,
82                              });
83
84 # fill arrays
85 my @loop_data =();
86 my $tag;
87 # loop through each tab 0 through 9
88 for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
89 # loop through each tag
90         my @fields = $record->fields();
91         my @loop_data =();
92         foreach my $field (@fields) {
93                         my @subfields_data;
94                 # if tag <10, there's no subfield, use the "@" trick
95                 if ($field->tag()<10) {
96                         next if ($tagslib->{$field->tag()}->{'@'}->{tab}  ne $tabloop);
97                         next if ($tagslib->{$field->tag()}->{'@'}->{hidden});
98                         my %subfield_data;
99                         $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{'@'}->{lib};
100                         $subfield_data{marc_value}=$field->data();
101                         $subfield_data{marc_subfield}='@';
102                         $subfield_data{marc_tag}=$field->tag();
103                         push(@subfields_data, \%subfield_data);
104                 } else {
105                         my @subf=$field->subfields;
106         # loop through each subfield
107                         for my $i (0..$#subf) {
108                                 $subf[$i][0] = "@" unless $subf[$i][0];
109                                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
110                                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{hidden});
111                                 my %subfield_data;
112                                 $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
113                                 if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl}) {
114                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
115                                 } else {
116                                         $subfield_data{marc_value}=$subf[$i][1];
117                                 }
118                                 $subfield_data{marc_subfield}=$subf[$i][0];
119                                 $subfield_data{marc_tag}=$field->tag();
120                                 push(@subfields_data, \%subfield_data);
121                         }
122                 }
123                 if ($#subfields_data>=0) {
124                         my %tag_data;
125                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
126                         $tag_data{subfield} = \@subfields_data;
127                         push (@loop_data, \%tag_data);
128                 }
129         }
130         $template->param($tabloop."XX" =>\@loop_data);
131 }
132 # now, build item tab !
133 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
134 # loop through each tag
135 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
136 # then construct template.
137 my @fields = $record->fields();
138 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
139 my @big_array;
140 foreach my $field (@fields) {
141         next if ($field->tag()<10);
142         my @subf=$field->subfields;
143         my %this_row;
144 # loop through each subfield
145         for my $i (0..$#subf) {
146                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10);
147                 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
148                 $this_row{$subf[$i][0]} =$subf[$i][1];
149         }
150         if (%this_row) {
151                 push(@big_array, \%this_row);
152         }
153 }
154 #fill big_row with missing datas
155 foreach my $subfield_code  (keys(%witness)) {
156         for (my $i=0;$i<=$#big_array;$i++) {
157                 $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
158         }
159 }
160 # now, construct template !
161 my @item_value_loop;
162 my @header_value_loop;
163 for (my $i=0;$i<=$#big_array; $i++) {
164         my $items_data;
165         foreach my $subfield_code (keys(%witness)) {
166                 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
167         }
168         my %row_data;
169         $row_data{item_value} = $items_data;
170         push(@item_value_loop,\%row_data);
171 }
172 foreach my $subfield_code (keys(%witness)) {
173         my %header_value;
174         $header_value{header_value} = $witness{$subfield_code};
175         push(@header_value_loop, \%header_value);
176 }
177
178 $template->param(item_loop => \@item_value_loop,
179                                                 item_header_loop => \@header_value_loop,
180                                                 biblionumber => $biblionumber,
181                                                 bibid => $bibid,
182                                                 biblionumber => $biblionumber);
183 output_html_with_http_headers $query, $cookie, $template->output;
184