Adding in Coded values conforming to the Z39.77-2006 Holdings Statements for Bibliogr...
[koha.git] / opac / opac-serial-issues.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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 # $Id$
21
22 use strict;
23 use CGI;
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Date;
27 use C4::Serials;
28 use C4::Letters;
29 use C4::Output;
30 use C4::Interface::CGI::Output;
31 use C4::Context;
32
33
34 my $query      = new CGI;
35 my $op         = $query->param('op');
36 my $dbh        = C4::Context->dbh;
37 my $selectview = $query->param('selectview');
38 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
39
40 my $sth;
41
42 # my $id;
43 my ( $template, $loggedinuser, $cookie );
44 my $biblionumber = $query->param('biblionumber');
45 if ( $selectview eq "full" ) {
46     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
47
48     my $title   = $subscriptions->[0]{bibliotitle};
49     my $yearmin = $subscriptions->[0]{year};
50     my $yearmax = $subscriptions->[ scalar(@$subscriptions) - 1 ]{year};
51
52     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
53         {
54             template_name   => "opac-full-serial-issues.tmpl",
55             query           => $query,
56             type            => "opac",
57             authnotrequired => 1,
58             debug           => 1,
59         }
60     );
61
62     # replace CR by <br> in librarian note
63     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
64
65     $template->param(
66         biblionumber   => $query->param('biblionumber'),
67         years          => $subscriptions,
68         yearmin        => $yearmin,
69         yearmax        => $yearmax,
70         bibliotitle    => $title,
71         suggestion     => C4::Context->preference("suggestion"),
72         virtualshelves => C4::Context->preference("virtualshelves"),
73     );
74
75 }
76 else {
77     my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
78
79     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
80         {
81             template_name   => "opac-serial-issues.tmpl",
82             query           => $query,
83             type            => "opac",
84             authnotrequired => 1,
85             debug           => 1,
86         }
87     );
88
89     # replace CR by <br> in librarian note
90     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
91
92     $template->param(
93         biblionumber      => $query->param('biblionumber'),
94         subscription_LOOP => $subscriptions,
95     );
96 }
97 output_html_with_http_headers $query, $cookie, $template->output;