Bug 25548: Remove Apache rewrite directives that trigger redirects
[koha.git] / catalogue / labeledMARCdetail.pl
blob16eb6cacd117e4ab9e86fc9ce9302801deaeef27
1 #!/usr/bin/perl
3 # Copyright 2008-2009 LibLime
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
21 use CGI qw ( -utf8 );
22 use HTML::Entities;
23 use MARC::Record;
24 use C4::Auth;
25 use C4::Context;
26 use C4::Output;
27 use C4::Biblio;
28 use C4::Items;
29 use C4::Search; # enabled_staff_search_views
30 use C4::Serials;
32 use Koha::Biblios;
33 use Koha::BiblioFrameworks;
34 use Koha::Patrons;
36 my $query = CGI->new;
37 my $dbh = C4::Context->dbh;
38 my $biblionumber = $query->param('biblionumber');
39 $biblionumber = HTML::Entities::encode($biblionumber);
40 my $frameworkcode = $query->param('frameworkcode') // GetFrameworkCode( $biblionumber );
41 my $popup =
42 $query->param('popup')
43 ; # if set to 1, then don't insert links, it's just to show the biblio
45 # open template
46 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
48 template_name => "catalogue/labeledMARCdetail.tt",
49 query => $query,
50 type => "intranet",
51 flagsrequired => { catalogue => 1 },
52 debug => 1,
56 my $record = GetMarcBiblio({ biblionumber => $biblionumber });
57 if ( not defined $record ) {
58 # biblionumber invalid -> report and exit
59 $template->param( unknownbiblionumber => 1,
60 biblionumber => $biblionumber
62 output_html_with_http_headers $query, $cookie, $template->output;
63 exit;
66 my $biblio_object = Koha::Biblios->find( $biblionumber ); # FIXME Should replace $biblio
67 my $tagslib = GetMarcStructure(1,$frameworkcode);
68 my $biblio = GetBiblioData($biblionumber);
70 if($query->cookie("holdfor")){
71 my $holdfor_patron = Koha::Patrons->find( $query->cookie("holdfor") );
72 $template->param(
73 holdfor => $query->cookie("holdfor"),
74 holdfor_surname => $holdfor_patron->surname,
75 holdfor_firstname => $holdfor_patron->firstname,
76 holdfor_cardnumber => $holdfor_patron->cardnumber,
80 if( $query->cookie("searchToOrder") ){
81 my ( $basketno, $vendorid ) = split( /\//, $query->cookie("searchToOrder") );
82 $template->param(
83 searchtoorder_basketno => $basketno,
84 searchtoorder_vendorid => $vendorid
88 #count of item linked
89 my $itemcount = $biblio_object->items->count;
90 $template->param( count => $itemcount,
91 bibliotitle => $biblio->{title}, );
93 my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
94 $template->param(
95 frameworks => $frameworks,
96 frameworkcode => $frameworkcode,
99 my @marc_data;
100 my $prevlabel = '';
101 for my $field ($record->fields)
103 my $tag = $field->tag;
104 next if ! exists $tagslib->{$tag}->{lib};
105 my $label = $tagslib->{$tag}->{lib};
106 if ($label eq $prevlabel)
108 $label = '';
110 else
112 $prevlabel = $label;
114 my $value = $tag < 10
115 ? $field->data
116 : join ' ', map { $_->[1] } $field->subfields;
117 push @marc_data, {
118 label => $label,
119 value => $value,
123 $template->param (
124 marc_data => \@marc_data,
125 biblionumber => $biblionumber,
126 popup => $popup,
127 labeledmarcview => 1,
128 z3950_search_params => C4::Search::z3950_search_args($biblio),
129 C4::Search::enabled_staff_search_views,
130 subscriptionsnumber => CountSubscriptionFromBiblionumber($biblionumber),
131 searchid => scalar $query->param('searchid'),
134 $biblio = Koha::Biblios->find( $biblionumber );
135 my $holds = $biblio->holds;
136 $template->param( biblio => $biblio, holdcount => $holds->count );
138 output_html_with_http_headers $query, $cookie, $template->output;