Bug 21066: Update English sample notices
[koha.git] / catalogue / labeledMARCdetail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2008-2009 LibLime
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
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;
31
32 use Koha::Biblios;
33 use Koha::BiblioFrameworks;
34 use Koha::Patrons;
35
36 my $query        = new CGI;
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
44
45 # open template
46 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
47     {
48         template_name   => "catalogue/labeledMARCdetail.tt",
49         query           => $query,
50         type            => "intranet",
51         authnotrequired => 0,
52         flagsrequired   => { catalogue => 1 },
53         debug           => 1,
54     }
55 );
56
57 my $record = GetMarcBiblio({ biblionumber => $biblionumber });
58 if ( not defined $record ) {
59     # biblionumber invalid -> report and exit
60     $template->param( unknownbiblionumber => 1,
61                 biblionumber => $biblionumber
62     );
63     output_html_with_http_headers $query, $cookie, $template->output;
64     exit;
65 }
66
67 my $biblio_object = Koha::Biblios->find( $biblionumber ); # FIXME Should replace $biblio
68 my $tagslib = GetMarcStructure(1,$frameworkcode);
69 my $biblio = GetBiblioData($biblionumber);
70
71 if($query->cookie("holdfor")){ 
72     my $holdfor_patron = Koha::Patrons->find( $query->cookie("holdfor") );
73     $template->param(
74         holdfor => $query->cookie("holdfor"),
75         holdfor_surname => $holdfor_patron->surname,
76         holdfor_firstname => $holdfor_patron->firstname,
77         holdfor_cardnumber => $holdfor_patron->cardnumber,
78     );
79 }
80
81 if( $query->cookie("searchToOrder") ){
82     my ( $basketno, $vendorid ) = split( /\//, $query->cookie("searchToOrder") );
83     $template->param(
84         searchtoorder_basketno => $basketno,
85         searchtoorder_vendorid => $vendorid
86     );
87 }
88
89 #count of item linked
90 my $itemcount = $biblio_object->items->count;
91 $template->param( count => $itemcount,
92                                         bibliotitle => $biblio->{title}, );
93
94 my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
95 $template->param(
96     frameworks    => $frameworks,
97     frameworkcode => $frameworkcode,
98 );
99
100 my @marc_data;
101 my $prevlabel = '';
102 for my $field ($record->fields)
103 {
104         my $tag = $field->tag;
105         next if ! exists $tagslib->{$tag}->{lib};
106         my $label = $tagslib->{$tag}->{lib};
107         if ($label eq $prevlabel)
108         {
109                 $label = '';
110         }
111         else
112         {
113                 $prevlabel = $label;
114         }
115         my $value = $tag < 10
116                 ? $field->data
117                 : join ' ', map { $_->[1] } $field->subfields;
118         push @marc_data, {
119                 label => $label,
120                 value => $value,
121         };
122 }
123
124 $template->param (
125         marc_data                               => \@marc_data,
126     biblionumber            => $biblionumber,
127     popup                   => $popup,
128         labeledmarcview => 1,
129         z3950_search_params             => C4::Search::z3950_search_args($biblio),
130         C4::Search::enabled_staff_search_views,
131     subscriptionsnumber => CountSubscriptionFromBiblionumber($biblionumber),
132     searchid            => scalar $query->param('searchid'),
133 );
134
135 $biblio = Koha::Biblios->find( $biblionumber );
136 my $holds = $biblio->holds;
137 $template->param( biblio => $biblio, holdcount => $holds->count );
138
139 output_html_with_http_headers $query, $cookie, $template->output;