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 as parameter
31 It shows the biblio in a (nice) MARC format depending on MARC
34 The template is in <templates_dir>/catalogue/MARCdetail.tmpl.
35 this template must be divided into 11 "tabs".
37 The first 10 tabs present the biblio, the 11th one presents
38 the items attached to the biblio
57 use C4
::Serials
; #uses getsubscriptionsfrombiblionumber GetSubscriptionsFromBiblionumber
58 use C4
::Search
; # enabled_staff_search_views
62 my $dbh = C4
::Context
->dbh;
63 my $biblionumber = $query->param('biblionumber');
64 my $frameworkcode = $query->param('frameworkcode');
65 $frameworkcode = GetFrameworkCode
( $biblionumber ) unless ($frameworkcode);
67 $query->param('popup')
68 ; # if set to 1, then don't insert links, it's just to show the biblio
69 my $subscriptionid = $query->param('subscriptionid');
71 my $tagslib = &GetMarcStructure
(1,$frameworkcode);
73 my $record = GetMarcBiblio
($biblionumber);
74 my $biblio = GetBiblioData
($biblionumber);
76 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
78 template_name
=> "catalogue/MARCdetail.tmpl",
82 flagsrequired
=> { catalogue
=> 1 },
88 my $itemcount = GetItemsCount
($biblionumber);
89 $template->param( count
=> $itemcount,
90 bibliotitle
=> $biblio->{title
}, );
92 #Getting the list of all frameworks
94 $dbh->prepare("select frameworktext, frameworkcode from biblio_framework");
99 push @select_fwk, "Default";
100 $select_fwk{"Default"} = "Default";
102 while ( my ( $description, $fwk ) = $queryfwk->fetchrow ) {
103 push @select_fwk, $fwk;
104 $select_fwk{$fwk} = $description;
106 $curfwk=$frameworkcode;
107 my $framework=CGI
::scrolling_list
( -name
=> 'Frameworks',
110 -OnChange
=> 'Changefwk(this);',
111 -values => \
@select_fwk,
112 -labels
=> \
%select_fwk,
115 $template->param(framework
=> $framework);
120 # loop through each tab 0 through 9
121 for ( my $tabloop = 0 ; $tabloop <= 10 ; $tabloop++ ) {
123 # loop through each tag
124 my @fields = $record->fields();
129 unless ( $tagslib->{'000'}->{'@'}->{tab
} ne $tabloop )
130 { # or ($tagslib->{'000'}->{'@'}->{hidden} =~ /-7|-4|-3|-2|2|3|5|8/ )) {
132 $subfield_data{marc_lib
} = $tagslib->{'000'}->{'@'}->{lib
};
133 $subfield_data{marc_value
} = $record->leader();
134 $subfield_data{marc_subfield
} = '@';
135 $subfield_data{marc_tag
} = '000';
136 push( @subfields_data, \
%subfield_data );
138 $tag_data{tag
} = '000 -' . $tagslib->{'000'}->{lib
};
139 my @tmp = @subfields_data;
140 $tag_data{subfield
} = \
@tmp;
141 push( @loop_data, \
%tag_data );
142 undef @subfields_data;
144 @fields = $record->fields();
145 for ( my $x_i = 0 ; $x_i <= $#fields ; $x_i++ ) {
147 # if tag <10, there's no subfield, use the "@" trick
148 if ( $fields[$x_i]->tag() < 10 ) {
151 $tagslib->{ $fields[$x_i]->tag() }->{'@'}->{tab
} ne $tabloop );
152 next if ( $tagslib->{ $fields[$x_i]->tag() }->{'@'}->{hidden
} =~ /-7|-4|-3|-2|2|3|5|8/);
154 $subfield_data{marc_lib
} =
155 $tagslib->{ $fields[$x_i]->tag() }->{'@'}->{lib
};
156 $subfield_data{marc_value
} = $fields[$x_i]->data();
157 $subfield_data{marc_subfield
} = '@';
158 $subfield_data{marc_tag
} = $fields[$x_i]->tag();
159 push( @subfields_data, \
%subfield_data );
162 my @subf = $fields[$x_i]->subfields;
164 # loop through each subfield
165 for my $i ( 0 .. $#subf ) {
166 $subf[$i][0] = "@" unless $subf[$i][0];
169 $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{tab
}
172 if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
173 ->{hidden
} =~ /-7|-4|-3|-2|2|3|5|8/);
175 $subfield_data{short_desc
} = $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{lib
};
176 $subfield_data{long_desc
} =
177 $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{lib
};
178 $subfield_data{link} =
179 $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{link};
181 # warn "tag : ".$tagslib->{$fields[$x_i]->tag()}." subfield :".$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}."lien koha? : "$subfield_data{link};
182 if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
185 $subfield_data{marc_value
} = $subf[$i][1];
186 $subfield_data{is_url
} = 1;
188 elsif ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
189 ->{kohafield
} eq "biblioitems.isbn" )
192 # 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]);
193 $subfield_data{marc_value
} = $subf[$i][1];
196 if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
199 $subfield_data{authority
} = $fields[$x_i]->subfield(9);
201 $subfield_data{marc_value
} =
202 GetAuthorisedValueDesc
( $fields[$x_i]->tag(),
203 $subf[$i][0], $subf[$i][1], '', $tagslib) || $subf[$i][1];
206 $subfield_data{marc_subfield
} = $subf[$i][0];
207 $subfield_data{marc_tag
} = $fields[$x_i]->tag();
208 push( @subfields_data, \
%subfield_data );
211 if ( $#subfields_data == 0 ) {
212 $subfields_data[0]->{marc_lib
} = '';
213 # $subfields_data[0]->{marc_subfield} = '';
215 if ( $#subfields_data >= 0) {
217 if ( $fields[$x_i]->tag() eq $fields[ $x_i - 1 ]->tag() && (C4
::Context
->preference('LabelMARCView') eq 'economical')) {
221 if ( C4
::Context
->preference('hide_marc') ) {
222 $tag_data{tag
} = $tagslib->{ $fields[$x_i]->tag() }->{lib
};
228 . C4
::Koha
::display_marc_indicators
($fields[$x_i])
230 . $tagslib->{ $fields[$x_i]->tag() }->{lib
};
233 my @tmp = @subfields_data;
234 $tag_data{subfield
} = \
@tmp;
235 push( @loop_data, \
%tag_data );
236 undef @subfields_data;
239 $template->param( $tabloop . "XX" => \
@loop_data );
242 # now, build item tab !
243 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
244 # loop through each tag
245 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
246 # then construct template.
247 my @fields = $record->fields();
249 ; #---- stores the list of subfields used at least once, with the "meaning" of the code
252 foreach my $field (@fields) {
253 next if ( $field->tag() < 10 );
254 my @subf = $field->subfields;
257 # loop through each subfield
258 for my $i ( 0 .. $#subf ) {
259 next if ( $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{tab
} ne 10 );
260 next if ( $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{hidden
} =~ /-7|-4|-3|-2|2|3|5|8/);
261 $witness{ $subf[$i][0] } =
262 $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{lib
};
263 $this_row{ $subf[$i][0] } = GetAuthorisedValueDesc
( $field->tag(),
264 $subf[$i][0], $subf[$i][1], '', $tagslib) || $subf[$i][1];
265 $norequests = 0 if $subf[$i][1] ==0 and $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{kohafield
} eq 'items.notforloan';
268 push( @big_array, \
%this_row );
272 my ($holdingbrtagf,$holdingbrtagsubf) = &GetMarcFromKohaField
("items.holdingbranch",$frameworkcode);
273 @big_array = sort {$a->{$holdingbrtagsubf} cmp $b->{$holdingbrtagsubf}} @big_array;
275 #fill big_row with missing datas
276 foreach my $subfield_code ( keys(%witness) ) {
277 for ( my $i = 0 ; $i <= $#big_array ; $i++ ) {
278 $big_array[$i]{$subfield_code} = " "
279 unless ( $big_array[$i]{$subfield_code} );
283 # now, construct template !
285 my @header_value_loop;
286 for ( my $i = 0 ; $i <= $#big_array ; $i++ ) {
288 foreach my $subfield_code ( keys(%witness) ) {
289 $items_data .= "<td>" . $big_array[$i]{$subfield_code} . "</td>";
292 $row_data{item_value
} = $items_data;
293 push( @item_value_loop, \
%row_data );
295 foreach my $subfield_code ( keys(%witness) ) {
297 $header_value{header_value
} = $witness{$subfield_code};
298 push( @header_value_loop, \
%header_value );
301 my $subscriptionscount = CountSubscriptionFromBiblionumber
($biblionumber);
303 if ($subscriptionscount) {
304 my $subscriptions = GetSubscriptionsFromBiblionumber
($biblionumber);
305 my $subscriptiontitle = $subscriptions->[0]{'bibliotitle'};
307 subscriptiontitle
=> $subscriptiontitle,
308 subscriptionsnumber
=> $subscriptionscount,
313 norequests
=> $norequests,
314 item_loop
=> \
@item_value_loop,
315 item_header_loop
=> \
@header_value_loop,
316 biblionumber
=> $biblionumber,
318 hide_marc
=> C4
::Context
->preference('hide_marc'),
320 z3950_search_params
=> C4
::Search
::z3950_search_args
($biblio),
321 C4
::Search
::enabled_staff_search_views
,
324 output_html_with_http_headers
$query, $cookie, $template->output;