3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 MARCdetail.pl : script to show a biblio in MARC format
31 This script needs a biblionumber as parameter
33 It shows the biblio in a (nice) MARC format depending on MARC
36 The template is in <templates_dir>/catalogue/MARCdetail.tt.
37 this template must be divided into 11 "tabs".
39 The first 10 tabs present the biblio, the 11th one presents
40 the items attached to the biblio
58 use C4
::Serials
; #uses getsubscriptionsfrombiblionumber GetSubscriptionsFromBiblionumber
59 use C4
::Search
; # enabled_staff_search_views
62 use Koha
::BiblioFrameworks
;
65 use List
::MoreUtils
qw( uniq );
68 my $dbh = C4
::Context
->dbh;
69 my $biblionumber = $query->param('biblionumber');
70 $biblionumber = HTML
::Entities
::encode
($biblionumber);
71 my $frameworkcode = $query->param('frameworkcode') // GetFrameworkCode
( $biblionumber );
73 $query->param('popup')
74 ; # if set to 1, then don't insert links, it's just to show the biblio
75 my $subscriptionid = $query->param('subscriptionid');
78 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
80 template_name
=> "catalogue/MARCdetail.tt",
84 flagsrequired
=> { catalogue
=> 1 },
89 my $record = GetMarcBiblio
({
90 biblionumber
=> $biblionumber,
93 if ( not defined $record ) {
94 # biblionumber invalid -> report and exit
95 $template->param( unknownbiblionumber
=> 1,
96 biblionumber
=> $biblionumber
98 output_html_with_http_headers
$query, $cookie, $template->output;
102 my $biblio_object = Koha
::Biblios
->find( $biblionumber ); # FIXME Should replace $biblio
103 my $tagslib = &GetMarcStructure
(1,$frameworkcode);
104 my $biblio = GetBiblioData
($biblionumber);
106 if($query->cookie("holdfor")){
107 my $holdfor_patron = Koha
::Patrons
->find( $query->cookie("holdfor") );
109 holdfor
=> $query->cookie("holdfor"),
110 holdfor_surname
=> $holdfor_patron->surname,
111 holdfor_firstname
=> $holdfor_patron->firstname,
112 holdfor_cardnumber
=> $holdfor_patron->cardnumber,
116 if( $query->cookie("searchToOrder") ){
117 my ( $basketno, $vendorid ) = split( /\//, $query->cookie("searchToOrder") );
119 searchtoorder_basketno
=> $basketno,
120 searchtoorder_vendorid
=> $vendorid
124 $template->param( ocoins
=> $biblio_object->get_coins );
126 #count of item linked
127 my $itemcount = $biblio_object->items->count;
128 $template->param( count
=> $itemcount,
129 bibliotitle
=> $biblio->{title
}, );
131 my $frameworks = Koha
::BiblioFrameworks
->search( {}, { order_by
=> ['frameworktext'] } );
133 frameworks
=> $frameworks,
134 frameworkcode
=> $frameworkcode,
139 # loop through each tab 0 through 9
140 for ( my $tabloop = 0 ; $tabloop <= 10 ; $tabloop++ ) {
142 # loop through each tag
143 my @fields = $record->fields();
148 unless ( $tagslib->{'000'}->{'@'}->{tab
} ne $tabloop )
149 { # or ($tagslib->{'000'}->{'@'}->{hidden} =~ /-7|-4|-3|-2|2|3|5|8/ )) {
151 $subfield_data{marc_lib
} = $tagslib->{'000'}->{'@'}->{lib
};
152 $subfield_data{marc_value
} = $record->leader();
153 $subfield_data{marc_subfield
} = '@';
154 $subfield_data{marc_tag
} = '000';
155 push( @subfields_data, \
%subfield_data );
157 $tag_data{tag
} = '000';
158 $tag_data{tag_desc
} = $tagslib->{'000'}->{lib
};
159 my @tmp = @subfields_data;
160 $tag_data{subfield
} = \
@tmp;
161 push( @loop_data, \
%tag_data );
162 undef @subfields_data;
164 @fields = $record->fields();
165 for ( my $x_i = 0 ; $x_i <= $#fields ; $x_i++ ) {
167 # if tag <10, there's no subfield, use the "@" trick
168 if ( $fields[$x_i]->tag() < 10 ) {
171 $tagslib->{ $fields[$x_i]->tag() }->{'@'}->{tab
} ne $tabloop );
172 next if ( $tagslib->{ $fields[$x_i]->tag() }->{'@'}->{hidden
} =~ /-7|-4|-3|-2|2|3|5|8/);
174 $subfield_data{marc_lib
} =
175 $tagslib->{ $fields[$x_i]->tag() }->{'@'}->{lib
};
176 $subfield_data{marc_value
} = $fields[$x_i]->data();
177 $subfield_data{marc_subfield
} = '@';
178 $subfield_data{marc_tag
} = $fields[$x_i]->tag();
179 push( @subfields_data, \
%subfield_data );
182 my @subf = $fields[$x_i]->subfields;
184 # loop through each subfield
185 for my $i ( 0 .. $#subf ) {
186 $subf[$i][0] = "@" unless defined $subf[$i][0];
189 $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{tab
}
192 if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
193 ->{hidden
} =~ /-7|-4|-3|-2|2|3|5|8/);
195 $subfield_data{short_desc
} = $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{lib
};
196 $subfield_data{long_desc
} =
197 $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{lib
};
198 $subfield_data{link} =
199 $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{link};
201 # warn "tag : ".$tagslib->{$fields[$x_i]->tag()}." subfield :".$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}."lien koha? : "$subfield_data{link};
202 if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
205 $subfield_data{marc_value
} = $subf[$i][1];
206 $subfield_data{is_url
} = 1;
208 elsif ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
209 ->{kohafield
} eq "biblioitems.isbn" )
212 # 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]);
213 $subfield_data{marc_value
} = $subf[$i][1];
216 if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
219 $subfield_data{authority
} = $fields[$x_i]->subfield(9);
221 $subfield_data{marc_value
} =
222 GetAuthorisedValueDesc
( $fields[$x_i]->tag(),
223 $subf[$i][0], $subf[$i][1], '', $tagslib) || $subf[$i][1];
226 $subfield_data{marc_subfield
} = $subf[$i][0];
227 $subfield_data{marc_tag
} = $fields[$x_i]->tag();
228 push( @subfields_data, \
%subfield_data );
231 if ( $#subfields_data == 0 ) {
232 $subfields_data[0]->{marc_lib
} = '';
233 # $subfields_data[0]->{marc_subfield} = '';
235 if ( $#subfields_data >= 0) {
237 if ( $fields[$x_i]->tag() eq $fields[ $x_i - 1 ]->tag() && (C4
::Context
->preference('LabelMARCView') eq 'economical')) {
241 if ( C4
::Context
->preference('hide_marc') ) {
242 $tag_data{tag
} = $tagslib->{ $fields[$x_i]->tag() }->{lib
};
245 $tag_data{tag
} = $fields[$x_i]->tag();
246 $tag_data{tag_ind
} = C4
::Koha
::display_marc_indicators
($fields[$x_i]);
247 $tag_data{tag_desc
} = $tagslib->{ $fields[$x_i]->tag() }->{lib
};
250 my @tmp = @subfields_data;
251 $tag_data{subfield
} = \
@tmp;
252 push( @loop_data, \
%tag_data );
253 undef @subfields_data;
256 $template->param( "tab" . $tabloop . "XX" => \
@loop_data );
259 # now, build item tab !
260 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
261 # loop through each tag
262 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
263 # then construct template.
264 my @fields = $record->fields();
266 ; #---- stores the list of subfields used at least once, with the "meaning" of the code
267 my @item_subfield_codes;
270 foreach my $field (@fields) {
271 next if ( $field->tag() < 10 );
272 my @subf = $field->subfields;
275 # loop through each subfield
276 for my $i ( 0 .. $#subf ) {
277 next if ( $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{tab
} ne 10 );
278 next if ( $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{hidden
} =~ /-7|-4|-3|-2|2|3|5|8/);
279 push @item_subfield_codes, $subf[$i][0];
280 $witness{ $subf[$i][0] } =
281 $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{lib
};
282 $item->{ $subf[$i][0] } = GetAuthorisedValueDesc
( $field->tag(),
283 $subf[$i][0], $subf[$i][1], '', $tagslib) || $subf[$i][1];
285 if $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{kohafield
} eq 'items.notforloan'
286 and $subf[$i][1] == 0;
288 push @item_loop, $item if $item;
291 my ($holdingbrtagf,$holdingbrtagsubf) = &GetMarcFromKohaField
( "items.holdingbranch" );
292 @item_loop = sort {$a->{$holdingbrtagsubf} cmp $b->{$holdingbrtagsubf}} @item_loop;
294 @item_subfield_codes = uniq
@item_subfield_codes;
296 my @item_header_loop;
297 for my $subfield_code ( @item_subfield_codes ) {
298 push @item_header_loop, $witness{$subfield_code};
299 for my $item_data ( @item_loop ) {
300 $item_data->{$subfield_code} ||= " "
304 my $subscriptionscount = CountSubscriptionFromBiblionumber
($biblionumber);
306 if ($subscriptionscount) {
307 my $subscriptions = GetSubscriptionsFromBiblionumber
($biblionumber);
308 my $subscriptiontitle = $subscriptions->[0]{'bibliotitle'};
310 subscriptiontitle
=> $subscriptiontitle,
311 subscriptionsnumber
=> $subscriptionscount,
316 norequests
=> $norequests,
317 item_loop
=> \
@item_loop,
318 item_header_loop
=> \
@item_header_loop,
319 item_subfield_codes
=> \
@item_subfield_codes,
320 biblionumber
=> $biblionumber,
322 hide_marc
=> C4
::Context
->preference('hide_marc'),
324 z3950_search_params
=> C4
::Search
::z3950_search_args
($biblio),
325 C4
::Search
::enabled_staff_search_views
,
326 searchid
=> scalar $query->param('searchid'),
327 biblio
=> $biblio_object->unblessed,
330 my @allorders_using_biblio = GetOrdersByBiblionumber
($biblionumber);
331 my @deletedorders_using_biblio;
332 my @orders_using_biblio;
334 my @baskets_deletedorders;
336 foreach my $myorder (@allorders_using_biblio) {
337 my $basket = $myorder->{'basketno'};
338 if ((defined $myorder->{'datecancellationprinted'}) and ($myorder->{'datecancellationprinted'} ne '0000-00-00') ){
339 push @deletedorders_using_biblio, $myorder;
340 unless (grep(/^$basket$/, @baskets_deletedorders)){
341 push @baskets_deletedorders,$myorder->{'basketno'};
345 push @orders_using_biblio, $myorder;
346 unless (grep(/^$basket$/, @baskets_orders)){
347 push @baskets_orders,$myorder->{'basketno'};
352 my $count_orders_using_biblio = scalar @orders_using_biblio ;
353 $template->param (countorders
=> $count_orders_using_biblio);
355 my $count_deletedorders_using_biblio = scalar @deletedorders_using_biblio ;
356 $template->param (countdeletedorders
=> $count_deletedorders_using_biblio);
358 $biblio = Koha
::Biblios
->find( $biblionumber );
359 my $holds = $biblio->holds;
360 $template->param( holdcount
=> $holds->count );
362 output_html_with_http_headers
$query, $cookie, $template->output;