Bug 18433: Allow to select results to export in item search
[koha.git] / catalogue / MARCdetail.pl
blob7c67ffb76a097f46a83b33f8d818103e40c230af
1 #!/usr/bin/perl
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>.
21 =head1 NAME
23 MARCdetail.pl : script to show a biblio in MARC format
25 =head1 SYNOPSIS
27 =cut
29 =head1 DESCRIPTION
31 This script needs a biblionumber as parameter
33 It shows the biblio in a (nice) MARC format depending on MARC
34 parameters tables.
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
42 =head1 FUNCTIONS
44 =cut
46 use Modern::Perl;
47 use CGI qw ( -utf8 );
48 use HTML::Entities;
50 use C4::Auth;
51 use C4::Context;
52 use C4::Output;
53 use C4::Koha;
54 use MARC::Record;
55 use C4::Biblio;
56 use C4::Items;
57 use C4::Acquisition;
58 use C4::Serials; #uses getsubscriptionsfrombiblionumber GetSubscriptionsFromBiblionumber
59 use C4::Search; # enabled_staff_search_views
61 use Koha::Biblios;
62 use Koha::BiblioFrameworks;
63 use Koha::Patrons;
65 use List::MoreUtils qw( uniq );
67 my $query = new CGI;
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 );
72 my $popup =
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');
77 # open template
78 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
80 template_name => "catalogue/MARCdetail.tt",
81 query => $query,
82 type => "intranet",
83 authnotrequired => 0,
84 flagsrequired => { catalogue => 1 },
85 debug => 1,
89 my $record = GetMarcBiblio({
90 biblionumber => $biblionumber,
91 embed_items => 1 });
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;
99 exit;
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") );
108 $template->param(
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") );
118 $template->param(
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'] } );
132 $template->param(
133 frameworks => $frameworks,
134 frameworkcode => $frameworkcode,
136 # fill arrays
137 my @loop_data = ();
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();
144 my @loop_data = ();
145 my @subfields_data;
147 # deal with leader
148 unless ( $tagslib->{'000'}->{'@'}->{tab} ne $tabloop )
149 { # or ($tagslib->{'000'}->{'@'}->{hidden} =~ /-7|-4|-3|-2|2|3|5|8/ )) {
150 my %subfield_data;
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 );
156 my %tag_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 ) {
169 next
170 if (
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/);
173 my %subfield_data;
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 );
181 else {
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];
187 next
188 if (
189 $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{tab}
190 ne $tabloop );
191 next
192 if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
193 ->{hidden} =~ /-7|-4|-3|-2|2|3|5|8/);
194 my %subfield_data;
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] }
203 ->{isurl} )
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];
215 else {
216 if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
217 ->{authtypecode} )
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) {
236 my %tag_data;
237 if ( $fields[$x_i]->tag() eq $fields[ $x_i - 1 ]->tag() && (C4::Context->preference('LabelMARCView') eq 'economical')) {
238 $tag_data{tag} = "";
240 else {
241 if ( C4::Context->preference('hide_marc') ) {
242 $tag_data{tag} = $tagslib->{ $fields[$x_i]->tag() }->{lib};
244 else {
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();
265 my %witness
266 ; #---- stores the list of subfields used at least once, with the "meaning" of the code
267 my @item_subfield_codes;
268 my @item_loop;
269 my $norequests = 1;
270 foreach my $field (@fields) {
271 next if ( $field->tag() < 10 );
272 my @subf = $field->subfields;
273 my $item;
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/);
280 push @item_subfield_codes, $subf[$i][0];
281 $witness{ $subf[$i][0] } =
282 $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{lib};
284 # Allow repeatables (BZ 13574)
285 if( $item->{$subf[$i][0]}) {
286 $item->{$subf[$i][0]} .= ' | ';
287 } else {
288 $item->{$subf[$i][0]} = q{};
290 if( $tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl} ) {
291 $item->{$subf[$i][0]} .= "<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
292 } else {
293 $item->{ $subf[$i][0] } .= GetAuthorisedValueDesc( $field->tag(), $subf[$i][0], $subf[$i][1], '', $tagslib) || $subf[$i][1];
296 $norequests = 0 if $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{kohafield} eq 'items.notforloan' and $subf[$i][1] == 0;
298 push @item_loop, $item if $item;
301 my ($holdingbrtagf,$holdingbrtagsubf) = &GetMarcFromKohaField( "items.holdingbranch" );
302 @item_loop = sort {$a->{$holdingbrtagsubf} cmp $b->{$holdingbrtagsubf}} @item_loop;
304 @item_subfield_codes = uniq @item_subfield_codes;
305 # fill item info
306 my @item_header_loop;
307 for my $subfield_code ( @item_subfield_codes ) {
308 push @item_header_loop, $witness{$subfield_code};
309 for my $item_data ( @item_loop ) {
310 $item_data->{$subfield_code} ||= "&nbsp;"
314 my $subscriptionscount = CountSubscriptionFromBiblionumber($biblionumber);
316 if ($subscriptionscount) {
317 my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
318 my $subscriptiontitle = $subscriptions->[0]{'bibliotitle'};
319 $template->param(
320 subscriptiontitle => $subscriptiontitle,
321 subscriptionsnumber => $subscriptionscount,
325 $template->param (
326 norequests => $norequests,
327 item_loop => \@item_loop,
328 item_header_loop => \@item_header_loop,
329 item_subfield_codes => \@item_subfield_codes,
330 biblionumber => $biblionumber,
331 popup => $popup,
332 hide_marc => C4::Context->preference('hide_marc'),
333 marcview => 1,
334 z3950_search_params => C4::Search::z3950_search_args($biblio),
335 C4::Search::enabled_staff_search_views,
336 searchid => scalar $query->param('searchid'),
337 biblio => $biblio_object->unblessed,
340 my @allorders_using_biblio = GetOrdersByBiblionumber ($biblionumber);
341 my @deletedorders_using_biblio;
342 my @orders_using_biblio;
343 my @baskets_orders;
344 my @baskets_deletedorders;
346 foreach my $myorder (@allorders_using_biblio) {
347 my $basket = $myorder->{'basketno'};
348 if ((defined $myorder->{'datecancellationprinted'}) and ($myorder->{'datecancellationprinted'} ne '0000-00-00') ){
349 push @deletedorders_using_biblio, $myorder;
350 unless (grep{ $_ eq $basket } @baskets_deletedorders){
351 push @baskets_deletedorders,$myorder->{'basketno'};
354 else {
355 push @orders_using_biblio, $myorder;
356 unless (grep { $_ eq $basket } @baskets_orders){
357 push @baskets_orders,$myorder->{'basketno'};
362 my $count_orders_using_biblio = scalar @orders_using_biblio ;
363 $template->param (countorders => $count_orders_using_biblio);
365 my $count_deletedorders_using_biblio = scalar @deletedorders_using_biblio ;
366 $template->param (countdeletedorders => $count_deletedorders_using_biblio);
368 $biblio = Koha::Biblios->find( $biblionumber );
369 my $holds = $biblio->holds;
370 $template->param( holdcount => $holds->count );
372 output_html_with_http_headers $query, $cookie, $template->output;