cleanup for serials and members for Dates
[koha.git] / serials / serials-collection.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
21 use strict;
22 use CGI;
23 use C4::Auth;
24 use C4::Koha;
25 use C4::Dates qw/format_date/;
26 use C4::Serials;
27 use C4::Letters;
28 use C4::Output;
29 use C4::Context;
30
31
32 my $query = new CGI;
33 my $op = $query->param('op');
34 my $dbh = C4::Context->dbh;
35
36 my $sth;
37 # my $id;
38 my ($template, $loggedinuser, $cookie);
39 ($template, $loggedinuser, $cookie)
40   = get_template_and_user({template_name => "serials/serials-collection.tmpl",
41                             query => $query,
42                             type => "intranet",
43                             authnotrequired => 0,
44                             flagsrequired => {serials => 1},
45                             debug => 1,
46                             });
47 my $biblionumber = $query->param('biblionumber');
48 my @subscriptionid = $query->param('subscriptionid');
49
50 my $subscriptiondescs ;
51 my $subscriptions;
52 if (@subscriptionid){
53    my @subscriptioninformation=();
54    foreach my $subscriptionid (@subscriptionid){
55     my $subs= GetSubscription($subscriptionid);
56     $subs->{opacnote}     =~ s/\n/\<br\/\>/g;
57     $subs->{missinglist}  =~ s/\n/\<br\/\>/g;
58     $subs->{recievedlist} =~ s/\n/\<br\/\>/g;
59     ##these are display information
60     $subs->{ "periodicity" . $subs->{periodicity} } = 1;
61     $subs->{ "numberpattern" . $subs->{numberpattern} } = 1;
62     $subs->{ "status" . $subs->{'status'} } = 1;
63     $subs->{startdate}     = format_date( $subs->{startdate} );
64     $subs->{histstartdate} = format_date( $subs->{histstartdate} );
65     if ( $subs->{enddate} eq '0000-00-00' ) {
66         $subs->{enddate} = '';
67     }
68     else {
69         $subs->{enddate} = format_date( $subs->{enddate} );
70     }
71     $subs->{'abouttoexpire'}=abouttoexpire($subs->{'subscriptionid'});
72     $subs->{'subscriptionexpired'}=HasSubscriptionExpired($subs->{'subscriptionid'});
73     push @$subscriptiondescs,$subs;
74     my $tmpsubscription= GetFullSubscription($subscriptionid);
75     @subscriptioninformation=(@$tmpsubscription,@subscriptioninformation);
76   }
77   $subscriptions=PrepareSerialsData(\@subscriptioninformation);
78 } else {
79   $subscriptiondescs = GetSubscriptionsFromBiblionumber($biblionumber) ;
80   my $subscriptioninformation = GetFullSubscriptionsFromBiblionumber($biblionumber);
81   $subscriptions=PrepareSerialsData($subscriptioninformation);
82 }
83
84 my $title = $subscriptiondescs->[0]{bibliotitle};
85 my $yearmax=($subscriptions->[0]{year} eq "manage" && scalar(@$subscriptions)>1)? $subscriptions->[1]{year} :$subscriptions->[0]{year};
86 my $yearmin=$subscriptions->[scalar(@$subscriptions)-1]{year};
87 my $subscriptionidlist="";
88 foreach my $subscription (@$subscriptiondescs){
89   $subscriptionidlist.=$subscription->{'subscriptionid'}."," ;
90   $biblionumber = $subscription->{'bibnum'} unless ($biblionumber);
91 }
92
93 # warn "title : $title yearmax : $yearmax nombre d'elements dans le tableau :".scalar(@$subscriptions);
94 #  use Data::Dumper; warn Dumper($subscriptions);
95 chop $subscriptionidlist;
96 $template->param(
97           onesubscription => (scalar(@$subscriptiondescs)==1),
98           subscriptionidlist => $subscriptionidlist,
99           biblionumber => $biblionumber,
100           subscriptions => $subscriptiondescs,
101           years => $subscriptions,
102           yearmin => $yearmin,
103           yearmax =>$yearmax,
104           bibliotitle => $title,
105           suggestion => C4::Context->preference("suggestion"),
106           virtualshelves => C4::Context->preference("virtualshelves"),
107           subscr=>$query->param('subscriptionid'),
108           );
109
110 output_html_with_http_headers $query, $cookie, $template->output;