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