For MARC 21, instead of deleting the whole subfield when a character does not
[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 use HTML::Template;
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 # my $id;
42 my ($template, $loggedinuser, $cookie);
43 my $biblionumber = $query->param('biblionumber');
44 if ($selectview eq "full"){
45         my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
46         
47         my $title = $subscriptions->[0]{bibliotitle};
48         my $yearmin=$subscriptions->[0]{year};
49         my $yearmax=$subscriptions->[scalar(@$subscriptions)-1]{year};
50
51         ($template, $loggedinuser, $cookie)
52         = get_template_and_user({template_name => "opac-full-serial-issues.tmpl",
53                                         query => $query,
54                                         type => "opac",
55                                         authnotrequired => 1,
56                                         debug => 1,
57                                         });
58         
59         # replace CR by <br> in librarian note
60         # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
61         
62         $template->param(
63                 biblionumber => $query->param('biblionumber'),
64                 years => $subscriptions,
65                 yearmin => $yearmin,
66                 yearmax =>$yearmax,
67                 bibliotitle => $title,
68                 suggestion => C4::Context->preference("suggestion"),
69                 virtualshelves => C4::Context->preference("virtualshelves"),
70                 );
71
72 } else {
73         my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
74         
75         ($template, $loggedinuser, $cookie)
76         = get_template_and_user({template_name => "opac-serial-issues.tmpl",
77                                         query => $query,
78                                         type => "opac",
79                                         authnotrequired => 1,
80                                         debug => 1,
81                                         });
82         
83         # replace CR by <br> in librarian note
84         # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
85         
86         $template->param(
87                 biblionumber => $query->param('biblionumber'),
88                 subscription_LOOP => $subscriptions,
89                 );
90 }
91 output_html_with_http_headers $query, $cookie, $template->output;