Merge remote-tracking branch 'origin/new/bug_7621'
[koha.git] / serials / serials-collection.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Parts Copyright 2010 Biblibre
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21
22 use strict;
23 use warnings;
24 use CGI;
25 use C4::Auth;
26 use C4::Koha;
27 use C4::Dates qw/format_date/;
28 use C4::Serials;
29 use C4::Letters;
30 use C4::Output;
31 use C4::Context;
32 use List::MoreUtils qw/uniq/;
33
34
35 my $query = new CGI;
36 my $op = $query->param('op') || q{};
37 my $nbissues=$query->param('nbissues');
38 my $dbh = C4::Context->dbh;
39
40 my ($template, $loggedinuser, $cookie);
41 ($template, $loggedinuser, $cookie)
42   = get_template_and_user({template_name => "serials/serials-collection.tmpl",
43                             query => $query,
44                             type => "intranet",
45                             authnotrequired => 0,
46                             flagsrequired => {serials => '*'},
47                             debug => 1,
48                             });
49 my $biblionumber = $query->param('biblionumber');
50 my @subscriptionid = $query->param('subscriptionid');
51
52 @subscriptionid= uniq @subscriptionid;
53 @subscriptionid= sort @subscriptionid;
54 my $subscriptiondescs;
55 my $subscriptions;
56
57 if($op eq 'gennext' && @subscriptionid){
58     my $subscriptionid = $subscriptionid[0];
59     my $sth = $dbh->prepare("SELECT publisheddate, serialid, serialseq, planneddate
60                                                         FROM serial WHERE status = 1 AND subscriptionid = ?");
61     my $status = defined( $nbissues ) ? 2 : 3;
62     $nbissues ||= 1;
63     for ( my $i = 0; $i < $nbissues; $i++ ){
64         $sth->execute($subscriptionid);
65         # modify actual expected issue, to generate the next
66         if ( my $issue = $sth->fetchrow_hashref ) {
67                 ModSerialStatus( $issue->{serialid}, $issue->{serialseq},
68                 $issue->{planneddate}, $issue->{publisheddate},
69                 $status, "" );
70         }else{
71             my $subscription = GetSubscription($subscriptionid);
72             my $expected = GetNextExpected($subscriptionid);
73             my (
74                  $newserialseq,  $newlastvalue1, $newlastvalue2, $newlastvalue3,
75              $newinnerloop1, $newinnerloop2, $newinnerloop3
76             ) = GetNextSeq($subscription);
77
78              ## We generate the next publication date
79              my $nextpublisheddate = GetNextDate( $expected->{planneddate}->output('iso'), $subscription );
80              ## Creating the new issue
81              NewIssue( $newserialseq, $subscriptionid, $subscription->{'biblionumber'},
82                      1, $nextpublisheddate, $nextpublisheddate );
83
84              ## Updating the subscription seq status
85              my $squery = "UPDATE subscription SET lastvalue1=?, lastvalue2=?, lastvalue3=?, innerloop1=?, innerloop2=?, innerloop3=?
86                          WHERE  subscriptionid = ?";
87              my $seqsth = $dbh->prepare($squery);
88              $seqsth->execute(
89                  $newlastvalue1, $newlastvalue2, $newlastvalue3, $newinnerloop1,
90                  $newinnerloop2, $newinnerloop3, $subscriptionid
91                  );
92
93         }
94         last if $nbissues == 1;
95         last if HasSubscriptionExpired($subscriptionid) > 0;
96     }
97     print $query->redirect('/cgi-bin/koha/serials/serials-collection.pl?subscriptionid='.$subscriptionid);
98 }
99
100 my $subscriptioncount;
101 my ($location, $callnumber);
102 if (@subscriptionid){
103    my @subscriptioninformation=();
104    foreach my $subscriptionid (@subscriptionid){
105     my $subs= GetSubscription($subscriptionid);
106     $subs->{opacnote}     =~ s/\n/\<br\/\>/g;
107     $subs->{missinglist}  =~ s/\n/\<br\/\>/g;
108     $subs->{recievedlist} =~ s/\n/\<br\/\>/g;
109     ##these are display information
110     $subs->{ "periodicity" . $subs->{periodicity} } = 1;
111     $subs->{ "numberpattern" . $subs->{numberpattern} } = 1;
112     $subs->{ "status" . $subs->{'status'} } = 1;
113     $subs->{startdate}     = format_date( $subs->{startdate} );
114     $subs->{histstartdate} = format_date( $subs->{histstartdate} );
115     if ( !defined $subs->{enddate} || $subs->{enddate} eq '0000-00-00' ) {
116         $subs->{enddate} = '';
117     }
118     else {
119         $subs->{enddate} = format_date( $subs->{enddate} );
120     }
121     $subs->{'abouttoexpire'}=abouttoexpire($subs->{'subscriptionid'});
122     $subs->{'subscriptionexpired'}=HasSubscriptionExpired($subs->{'subscriptionid'});
123     $subs->{'subscriptionid'} = $subscriptionid;  # FIXME - why was this lost ?
124         $location = GetAuthorisedValues('LOC', $subs->{'location'});
125         $callnumber = $subs->{callnumber};
126     push @$subscriptiondescs,$subs;
127     my $tmpsubscription= GetFullSubscription($subscriptionid);
128     @subscriptioninformation=(@$tmpsubscription,@subscriptioninformation);
129   }
130   $subscriptions=PrepareSerialsData(\@subscriptioninformation);
131   $subscriptioncount = CountSubscriptionFromBiblionumber($subscriptiondescs->[0]{'biblionumber'});
132 } else {
133   $subscriptiondescs = GetSubscriptionsFromBiblionumber($biblionumber) ;
134   my $subscriptioninformation = GetFullSubscriptionsFromBiblionumber($biblionumber);
135   $subscriptions=PrepareSerialsData($subscriptioninformation);
136 }
137
138 my $title = $subscriptiondescs->[0]{bibliotitle};
139 my $yearmax=($subscriptions->[0]{year} eq "manage" && scalar(@$subscriptions)>1)? $subscriptions->[1]{year} :$subscriptions->[0]{year};
140 my $yearmin=$subscriptions->[scalar(@$subscriptions)-1]{year};
141 my $subscriptionidlist="";
142 foreach my $subscription (@$subscriptiondescs){
143   $subscriptionidlist.=$subscription->{'subscriptionid'}."," ;
144   $biblionumber = $subscription->{'bibnum'} unless ($biblionumber);
145 }
146
147 # warn "title : $title yearmax : $yearmax nombre d'elements dans le tableau :".scalar(@$subscriptions);
148 #  use Data::Dumper; warn Dumper($subscriptions);
149 my $locationlib;
150 foreach (@$location) {
151     $locationlib = $_->{'lib'} if $_->{'selected'};
152 }
153
154 chop $subscriptionidlist;
155 $template->param(
156           subscriptionidlist => $subscriptionidlist,
157           biblionumber => $biblionumber,
158           subscriptions => $subscriptiondescs,
159           years => $subscriptions,
160           yearmin => $yearmin,
161           yearmax =>$yearmax,
162           bibliotitle => $title,
163           suggestion => C4::Context->preference("suggestion"),
164           virtualshelves => C4::Context->preference("virtualshelves"),
165           routing => C4::Context->preference("RoutingSerials"),
166           subscr=>$query->param('subscriptionid'),
167           subscriptioncount => $subscriptioncount,
168           location             => $locationlib,
169           callnumber           => $callnumber,
170           uc(C4::Context->preference("marcflavour")) => 1,
171           serialsadditems   => $subscriptiondescs->[0]{'serialsadditems'},
172           );
173
174 output_html_with_http_headers $query, $cookie, $template->output;