3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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
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.
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
22 MARCdetail.pl : script to show a biblio in MARC format
29 This script needs a biblionumber in bib parameter (bibnumber
30 from koha style DB. Automaticaly maps to marc biblionumber).
32 It shows the biblio in a (nice) MARC format depending on MARC
35 The template is in <templates_dir>/catalogue/MARCdetail.tmpl.
36 this template must be divided into 11 "tabs".
38 The first 10 tabs present the biblio, the 11th one presents
39 the items attached to the biblio
53 use C4
::Interface
::CGI
::Output
;
63 my $dbh=C4
::Context
->dbh;
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 $tagslib = &MARCgettagslib
($dbh,1);
71 my $record =MARCgetbiblio
($dbh,$bibid);
72 warn $record->as_formatted();
74 my ($template, $loggedinuser, $cookie)
75 = get_template_and_user
({template_name
=> "catalogue/MARCdetail.tmpl",
79 flagsrequired
=> {catalogue
=> 1},
86 # loop through each tab 0 through 9
87 for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
88 # loop through each tag
89 my @fields = $record->fields();
91 foreach my $field (@fields) {
92 my @subf=$field->subfields;
93 # my $previous_tag = '';
95 # loop through each subfield
96 for my $i (0..$#subf) {
97 # $previous_tag = $field->tag();
98 $subf[$i][0] = "@" unless $subf[$i][0];
99 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab
} ne $tabloop);
101 $subfield_data{marc_lib
}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib
};
102 if ($field->tag()<10) {
103 $subfield_data{marc_value
}=$field->data();
105 $subfield_data{marc_value
}=$subf[$i][1];
107 $subfield_data{marc_tag
}=$subf[$i][0];
108 push(@subfields_data, \
%subfield_data);
110 if ($#subfields_data>=0) {
112 $tag_data{tag
}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib
};
113 $tag_data{subfield
} = \
@subfields_data;
114 push (@loop_data, \
%tag_data);
117 $template->param($tabloop."XX" =>\
@loop_data);
119 # now, build item tab !
120 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
121 # loop through each tag
122 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
123 # then construct template.
124 my @fields = $record->fields();
125 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
127 foreach my $field (@fields) {
128 my @subf=$field->subfields;
130 # loop through each subfield
131 for my $i (0..$#subf) {
132 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab
} ne 10);
133 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib
};
134 $this_row{$subf[$i][0]} =$subf[$i][1];
137 push(@big_array, \
%this_row);
140 #fill big_row with missing datas
141 foreach my $subfield_code (keys(%witness)) {
142 for (my $i=0;$i<=$#big_array;$i++) {
143 $big_array[$i]{$subfield_code}=" " unless ($big_array[$i]{$subfield_code});
144 # warn "filled : ".$big_array[$i]{$subfield_code};
147 # now, construct template !
149 my @header_value_loop;
150 for (my $i=0;$i<=$#big_array; $i++) {
152 foreach my $subfield_code (keys(%witness)) {
153 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
157 $row_data{item_value
} = $items_data;
158 push(@item_value_loop,\
%row_data);
160 foreach my $subfield_code (keys(%witness)) {
162 $header_value{header_value
} = $witness{$subfield_code};
163 push(@header_value_loop, \
%header_value);
166 $template->param(item_loop
=> \
@item_value_loop,
167 item_header_loop
=> \
@header_value_loop,
168 biblionumber
=> $biblionumber,
170 biblionumber
=> $biblionumber);
171 output_html_with_http_headers
$query, $cookie, $template->output;