road to 1.3.2
[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 from koha style DB. Automaticaly maps to marc biblionumber).
30 It shows the biblio in a (nice) MARC format depending on MARC parameters tables.
31 The template is in <templates_dir>/catalogue/MARCdetail.tmpl. this template must be divided in 11 "tabs".
32 The 10 firsts presents the biblio, the 11th one presents the items attached to the biblio
33
34 =head1 FUNCTIONS
35
36 =over 2
37
38 =cut
39
40
41 use strict;
42 require Exporter;
43 use C4::Context;
44 use C4::Output;
45 use CGI;
46 use C4::Search;
47 use MARC::Record;
48 use C4::Biblio;
49 use C4::Catalogue;
50 use HTML::Template;
51
52 my $query=new CGI;
53
54 my $dbh=C4::Context->dbh;
55
56 my $biblionumber=$query->param('bib');
57 my $bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber);
58
59 my $tagslib = &MARCgettagslib($dbh,1);
60
61 my $record =MARCgetbiblio($dbh,$bibid);
62 # open template
63 my $template = gettemplate("catalogue/MARCdetail.tmpl",0);
64 # fill arrays
65 my @loop_data =();
66 my $tag;
67 # loop through each tab 0 through 9
68 for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
69 # loop through each tag
70         my @fields = $record->fields();
71         my @loop_data =();
72         foreach my $field (@fields) {
73                 my @subf=$field->subfields;
74                 my $previous_tag = '';
75                 my @subfields_data;
76 # loop through each subfield
77                 for my $i (0..$#subf) {
78                         $previous_tag = $field->tag();
79                         next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
80                         my %subfield_data;
81                         $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
82                         $subfield_data{marc_value}=$subf[$i][1];
83                         $subfield_data{marc_tag}=$subf[$i][0];
84                         push(@subfields_data, \%subfield_data);
85                 }
86                 if ($#subfields_data>=0) {
87                         my %tag_data;
88                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
89                         $tag_data{subfield} = \@subfields_data;
90                         push (@loop_data, \%tag_data);
91                 }
92         }
93         $template->param($tabloop."XX" =>\@loop_data);
94 }
95 # now, build item tab !
96 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
97 # loop through each tag
98 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
99 # then construct template.
100 my @fields = $record->fields();
101 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
102 my @big_array;
103 foreach my $field (@fields) {
104         my @subf=$field->subfields;
105         my %this_row;
106 # loop through each subfield
107         for my $i (0..$#subf) {
108                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10);
109                 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
110                 $this_row{$subf[$i][0]} =$subf[$i][1];
111         }
112         if (%this_row) {
113                 push(@big_array, \%this_row);
114         }
115 }
116 #fill big_row with missing datas
117 foreach my $subfield_code  (keys(%witness)) {
118         for (my $i=0;$i<=$#big_array;$i++) {
119                 $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
120 #               warn "filled : ".$big_array[$i]{$subfield_code};
121         }
122 }
123 # now, construct template !
124 my @item_value_loop;
125 my @header_value_loop;
126 for (my $i=0;$i<=$#big_array; $i++) {
127         my $items_data;
128         foreach my $subfield_code (keys(%witness)) {
129                 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
130         }
131 #       warn $items_data;
132         my %row_data;
133         $row_data{item_value} = $items_data;
134         push(@item_value_loop,\%row_data);
135 }
136 foreach my $subfield_code (keys(%witness)) {
137         my %header_value;
138         $header_value{header_value} = $witness{$subfield_code};
139         push(@header_value_loop, \%header_value);
140 }
141
142 $template->param(item_loop => \@item_value_loop,
143                                                 item_header_loop => \@header_value_loop,
144                                                 biblionumber => $biblionumber,
145                                                 bibid => $bibid);
146 print "Content-Type: text/html\n\n", $template->output;
147