Bug 13188: Add PatronSelfModificationMandatoryField system preference
[koha.git] / catalogue / ISBDdetail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
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 =head1 NAME
21
22 ISBDdetail.pl : script to show a biblio in ISBD format
23
24 =head1 SYNOPSIS
25
26 =cut
27
28 =head1 DESCRIPTION
29
30 This script needs a biblionumber as parameter 
31
32 =head1 FUNCTIONS
33
34 =cut
35
36 use Modern::Perl;
37
38 use HTML::Entities;
39 use C4::Auth qw( get_template_and_user );
40 use C4::Context;
41 use C4::Output qw( output_html_with_http_headers );
42 use CGI qw ( -utf8 );
43 use C4::Biblio qw( GetBiblioData GetFrameworkCode GetISBDView GetMarcBiblio );
44 use C4::Serials qw( CountSubscriptionFromBiblionumber GetSubscription GetSubscriptionsFromBiblionumber );
45 use C4::Search qw( z3950_search_args enabled_staff_search_views );
46
47 use Koha::Biblios;
48 use Koha::Patrons;
49 use Koha::RecordProcessor;
50 use Koha::Virtualshelves;
51
52
53 my $query = CGI->new;
54 my $dbh = C4::Context->dbh;
55
56 my $biblionumber = $query->param('biblionumber');
57 $biblionumber = HTML::Entities::encode($biblionumber);
58
59 # open template
60 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
61     {
62         template_name => "catalogue/ISBDdetail.tt",
63         query         => $query,
64         type          => "intranet",
65         flagsrequired   => { catalogue => 1 },
66     }
67 );
68
69 if ( not defined $biblionumber ) {
70        # biblionumber invalid -> report and exit
71        $template->param( unknownbiblionumber => 1,
72                                 biblionumber => $biblionumber
73        );
74        output_html_with_http_headers $query, $cookie, $template->output;
75        exit;
76 }
77
78 my $record = GetMarcBiblio({
79     biblionumber => $biblionumber,
80     embed_items  => 1 });
81
82 if ( not defined $record ) {
83        # biblionumber invalid -> report and exit
84        $template->param( unknownbiblionumber => 1,
85                                 biblionumber => $biblionumber
86        );
87        output_html_with_http_headers $query, $cookie, $template->output;
88        exit;
89 }
90
91 my $biblio = Koha::Biblios->find( $biblionumber );
92 my $framework = GetFrameworkCode( $biblionumber );
93 my $record_processor = Koha::RecordProcessor->new({
94     filters => 'ViewPolicy',
95     options => {
96         interface => 'intranet',
97         frameworkcode => $framework
98     },
99 });
100 $record_processor->process($record);
101
102 my $res = GetISBDView({
103     'record'    => $record,
104     'template'  => 'intranet',
105     'framework' => $framework,
106 });
107
108 if($query->cookie("holdfor")){ 
109     my $holdfor_patron = Koha::Patrons->find( $query->cookie("holdfor") );
110     $template->param(
111         holdfor => $query->cookie("holdfor"),
112         holdfor_surname => $holdfor_patron->surname,
113         holdfor_firstname => $holdfor_patron->firstname,
114         holdfor_cardnumber => $holdfor_patron->cardnumber,
115     );
116 }
117
118 if( $query->cookie("searchToOrder") ){
119     my ( $basketno, $vendorid ) = split( /\//, $query->cookie("searchToOrder") );
120     $template->param(
121         searchtoorder_basketno => $basketno,
122         searchtoorder_vendorid => $vendorid
123     );
124 }
125
126 # count of item linked with biblio
127 my $itemcount = $biblio->items->count;
128 $template->param( count => $itemcount);
129 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
130  
131 if ($subscriptionsnumber) {
132     my $subscriptions     = GetSubscriptionsFromBiblionumber($biblionumber);
133     my $subscriptiontitle = $subscriptions->[0]{'bibliotitle'};
134     $template->param(
135         subscriptionsnumber => $subscriptionsnumber,
136         subscriptiontitle   => $subscriptiontitle,
137     );
138 }
139
140 # get biblionumbers stored in the cart
141 my @cart_list;
142
143 if($query->cookie("intranet_bib_list")){
144     my $cart_list = $query->cookie("intranet_bib_list");
145     @cart_list = split(/\//, $cart_list);
146     if ( grep {$_ eq $biblionumber} @cart_list) {
147         $template->param( incart => 1 );
148     }
149 }
150
151 my $some_private_shelves = Koha::Virtualshelves->get_some_shelves(
152     {
153         borrowernumber => $loggedinuser,
154         add_allowed    => 1,
155         public         => 0,
156     }
157 );
158 my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
159     {
160         borrowernumber => $loggedinuser,
161         add_allowed    => 1,
162         public         => 1,
163     }
164 );
165
166
167 $template->param(
168     add_to_some_private_shelves => $some_private_shelves,
169     add_to_some_public_shelves  => $some_public_shelves,
170 );
171
172 $template->param (
173     ISBD                => $res,
174     biblionumber        => $biblionumber,
175     isbdview            => 1,
176     z3950_search_params => C4::Search::z3950_search_args(GetBiblioData($biblionumber)),
177     ocoins => $biblio->get_coins,
178     C4::Search::enabled_staff_search_views,
179     searchid            => scalar $query->param('searchid'),
180     biblio              => $biblio,
181 );
182
183 my $holds = $biblio->holds;
184 $template->param( holdcount => $holds->count );
185
186 output_html_with_http_headers $query, $cookie, $template->output;
187