new features for serial module :
[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::Koha;
56 use MARC::Record;
57 use C4::Biblio;
58 use C4::Acquisition;
59 use C4::Bull; #uses getsubscriptionsfrombiblionumber
60 use HTML::Template;
61
62 my $query=new CGI;
63
64 my $dbh=C4::Context->dbh;
65
66 my $biblionumber=$query->param('biblionumber');
67 # my $bibid = $query->param('bibid');
68 my $itemtype = $query->param('frameworkcode');
69 my $popup = $query->param('popup'); # if set to 1, then don't insert links, it's just to show the biblio
70
71 # $bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless $bibid;
72 # $biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless $biblionumber;
73 $itemtype = &MARCfind_frameworkcode($dbh,$biblionumber) if not ($itemtype);
74 $itemtype = '' if ($itemtype eq 'Default');
75 # warn "itemtype :".$itemtype;
76
77 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
78
79 my $record =MARCgetbiblio($dbh,$biblionumber);
80 # open template
81 my ($template, $loggedinuser, $cookie)
82                 = get_template_and_user({template_name => "catalogue/MARCdetail.tmpl",
83                              query => $query,
84                              type => "intranet",
85                              authnotrequired => 0,
86                              flagsrequired => {catalogue => 1},
87                              debug => 1,
88                              });
89
90 #Getting the list of all frameworks
91 my $queryfwk =$dbh->prepare("select frameworktext, frameworkcode from biblio_framework");
92 $queryfwk->execute;
93 my %select_fwk;
94 my @select_fwk;
95 my $curfwk;
96 push @select_fwk,"Default";
97 $select_fwk{"Default"} = "Default";
98 while (my ($description, $fwk) =$queryfwk->fetchrow) {
99         push @select_fwk, $fwk;
100         $select_fwk{$fwk} = $description;
101 }
102 $curfwk=$itemtype;
103 my $framework=CGI::scrolling_list( -name     => 'Frameworks',
104                         -id => 'Frameworks',
105                         -default => $curfwk,
106                         -OnChange => 'Changefwk(this);',
107                         -values   => \@select_fwk,
108                         -labels   => \%select_fwk,
109                         -size     => 1,
110                         -multiple => 0 );
111
112 $template->param( framework => $framework);
113 # fill arrays
114 my @loop_data =();
115 my $tag;
116 # loop through each tab 0 through 9
117 for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
118 # loop through each tag
119         my @fields = $record->fields();
120         my @loop_data =();
121 #       foreach my $field (@fields) {
122         my @subfields_data;
123         for (my $x_i=0;$x_i<=$#fields;$x_i++) {
124 #               warn "$tabloop => $x_i";
125                 # if tag <10, there's no subfield, use the "@" trick
126                 if ($fields[$x_i]->tag()<10) {
127                         next if ($tagslib->{$fields[$x_i]->tag()}->{'@'}->{tab}  ne $tabloop);
128                         next if ($tagslib->{$fields[$x_i]->tag()}->{'@'}->{hidden});
129                         my %subfield_data;
130                         $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{'@'}->{lib};
131                         $subfield_data{marc_value}=$fields[$x_i]->data();
132                         $subfield_data{marc_subfield}='@';
133                         $subfield_data{marc_tag}=$fields[$x_i]->tag();
134                         push(@subfields_data, \%subfield_data);
135                 } else {
136                         my @subf=$fields[$x_i]->subfields;
137         # loop through each subfield
138                         for my $i (0..$#subf) {
139                                 $subf[$i][0] = "@" unless $subf[$i][0];
140                                 next if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
141                                 next if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{hidden});
142                                 my %subfield_data;
143                                 $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{lib};
144                                 $subfield_data{link}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{link};
145 #                               warn "tag : ".$tagslib->{$fields[$x_i]->tag()}." subfield :".$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}."lien koha? : "$subfield_data{link};
146                                 if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{isurl}) {
147                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
148                                 } elsif ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{kohafield} eq "biblioitems.isbn") {
149 #                                       warn " tag : ".$tagslib->{$fields[$x_i]->tag()}." subfield :".$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}. "ISBN : ".$subf[$i][1]."PosttraitementISBN :".DisplayISBN($subf[$i][1]);
150                                         $subfield_data{marc_value}=DisplayISBN($subf[$i][1]);
151                                 } else {
152                                         if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{authtypecode}) {
153                                                 $subfield_data{authority}=$fields[$x_i]->subfield(9);
154                                         }
155                                         $subfield_data{marc_value}=get_authorised_value_desc($fields[$x_i]->tag(), $subf[$i][0], $subf[$i][1], '', $dbh);
156                                 }
157                                 $subfield_data{marc_subfield}=$subf[$i][0];
158                                 $subfield_data{marc_tag}=$fields[$x_i]->tag();
159                                 push(@subfields_data, \%subfield_data);
160                         }
161                 }
162                 if ($#subfields_data>=0) {
163                         my %tag_data;
164                         if ($fields[$x_i]->tag() eq $fields[$x_i-1]->tag()) {
165                                 $tag_data{tag}="";
166                         } else {
167                                 $tag_data{tag}=$fields[$x_i]->tag().' -'. $tagslib->{$fields[$x_i]->tag()}->{lib};
168                         }
169                         my @tmp = @subfields_data;
170                         $tag_data{subfield} = \@tmp;
171                         push (@loop_data, \%tag_data);
172                         undef @subfields_data;
173                 }
174         }
175         $template->param($tabloop."XX" =>\@loop_data);
176 }
177 # now, build item tab !
178 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
179 # loop through each tag
180 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
181 # then construct template.
182 my @fields = $record->fields();
183 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
184 my @big_array;
185 foreach my $field (@fields) {
186         next if ($field->tag()<10);
187         my @subf=$field->subfields;
188         my %this_row;
189 # loop through each subfield
190         for my $i (0..$#subf) {
191                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10);
192                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{hidden});
193                 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
194                 $this_row{$subf[$i][0]} =$subf[$i][1];
195         }
196         if (%this_row) {
197                 push(@big_array, \%this_row);
198         }
199 }
200 #fill big_row with missing datas
201 foreach my $subfield_code  (keys(%witness)) {
202         for (my $i=0;$i<=$#big_array;$i++) {
203                 $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
204         }
205 }
206 # now, construct template !
207 my @item_value_loop;
208 my @header_value_loop;
209 for (my $i=0;$i<=$#big_array; $i++) {
210         my $items_data;
211         foreach my $subfield_code (keys(%witness)) {
212                 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
213         }
214         my %row_data;
215         $row_data{item_value} = $items_data;
216         push(@item_value_loop,\%row_data);
217 }
218 foreach my $subfield_code (keys(%witness)) {
219         my %header_value;
220         $header_value{header_value} = $witness{$subfield_code};
221         push(@header_value_loop, \%header_value);
222 }
223
224 my $subscriptionsnumber = getsubscriptionfrombiblionumber($biblionumber);
225 $template->param(item_loop => \@item_value_loop,
226                                                 item_header_loop => \@header_value_loop,
227                                                 biblionumber => $biblionumber,
228                                                 subscriptionsnumber => $subscriptionsnumber,
229                                                 popup => $popup,
230                                                 );
231 output_html_with_http_headers $query, $cookie, $template->output;
232
233 sub get_authorised_value_desc ($$$$$) {
234    my($tag, $subfield, $value, $framework, $dbh) = @_;
235
236    #---- branch
237     if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
238        return getbranchdetail($value)->{branchname};
239     }
240
241    #---- itemtypes
242    if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
243                 my $itemtypedef = getitemtypeinfo($itemtype);
244        return $itemtypedef->{description};
245     }
246
247    #---- "true" authorized value
248    my $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
249
250    if ($category ne "") {
251        my $sth = $dbh->prepare("select lib from authorised_values where category = ? and authorised_value = ?");
252        $sth->execute($category, $value);
253        my $data = $sth->fetchrow_hashref;
254        return $data->{'lib'};
255    } else {
256        return $value; # if nothing is found return the original value
257    }
258 }