a1573b2676857aeae3b6a3349f7e209dbaaf26a9
[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 CGI;
54 use C4::Search;
55 use MARC::Record;
56 use C4::Biblio;
57 use C4::Catalogue;
58 use HTML::Template;
59
60 my $query=new CGI;
61
62 my $dbh=C4::Context->dbh;
63
64 my $biblionumber=$query->param('bib');
65 my $bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber);
66
67 my $tagslib = &MARCgettagslib($dbh,1);
68
69 my $record =MARCgetbiblio($dbh,$bibid);
70 #warn $record->as_formatted();
71 # open template
72 my ($template, $loggedinuser, $cookie)
73                 = get_template_and_user({template_name => "catalogue/MARCdetail.tmpl",
74                              query => $query,
75                              type => "intranet",
76                              authnotrequired => 0,
77                              flagsrequired => {catalogue => 1},
78                              debug => 1,
79                              });
80
81 # fill arrays
82 my @loop_data =();
83 my $tag;
84 # loop through each tab 0 through 9
85 for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
86 # loop through each tag
87         my @fields = $record->fields();
88         my @loop_data =();
89         foreach my $field (@fields) {
90                 my @subf=$field->subfields;
91                 my $previous_tag = '';
92                 my @subfields_data;
93 # loop through each subfield
94                 for my $i (0..$#subf) {
95                         $previous_tag = $field->tag();
96                         next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
97                         my %subfield_data;
98                         $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
99                         $subfield_data{marc_value}=$subf[$i][1];
100                         $subfield_data{marc_tag}=$subf[$i][0];
101                         push(@subfields_data, \%subfield_data);
102                 }
103                 if ($#subfields_data>=0) {
104                         my %tag_data;
105                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
106                         $tag_data{subfield} = \@subfields_data;
107                         push (@loop_data, \%tag_data);
108                 }
109         }
110         $template->param($tabloop."XX" =>\@loop_data);
111 }
112 # now, build item tab !
113 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
114 # loop through each tag
115 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
116 # then construct template.
117 my @fields = $record->fields();
118 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
119 my @big_array;
120 foreach my $field (@fields) {
121         my @subf=$field->subfields;
122         my %this_row;
123 # loop through each subfield
124         for my $i (0..$#subf) {
125                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10);
126                 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
127                 $this_row{$subf[$i][0]} =$subf[$i][1];
128         }
129         if (%this_row) {
130                 push(@big_array, \%this_row);
131         }
132 }
133 #fill big_row with missing datas
134 foreach my $subfield_code  (keys(%witness)) {
135         for (my $i=0;$i<=$#big_array;$i++) {
136                 $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
137 #               warn "filled : ".$big_array[$i]{$subfield_code};
138         }
139 }
140 # now, construct template !
141 my @item_value_loop;
142 my @header_value_loop;
143 for (my $i=0;$i<=$#big_array; $i++) {
144         my $items_data;
145         foreach my $subfield_code (keys(%witness)) {
146                 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
147         }
148 #       warn $items_data;
149         my %row_data;
150         $row_data{item_value} = $items_data;
151         push(@item_value_loop,\%row_data);
152 }
153 foreach my $subfield_code (keys(%witness)) {
154         my %header_value;
155         $header_value{header_value} = $witness{$subfield_code};
156         push(@header_value_loop, \%header_value);
157 }
158
159 $template->param(item_loop => \@item_value_loop,
160                                                 item_header_loop => \@header_value_loop,
161                                                 biblionumber => $biblionumber,
162                                                 bibid => $bibid);
163 print $query->header(
164     -type => guesstype($template->output),
165     -cookie => $cookie
166 ),$template->output;
167