3 # Copyright 2000-2002 Katipo Communications
4 # Parts Copyright 2010 Biblibre
6 # This file is part of Koha.
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
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.
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.
27 use C4
::Dates qw
/format_date/;
32 use List
::MoreUtils qw
/uniq/;
36 my $op = $query->param('op') || q{};
37 my $nbissues=$query->param('nbissues');
38 my $dbh = C4
::Context
->dbh;
40 my ($template, $loggedinuser, $cookie);
41 ($template, $loggedinuser, $cookie)
42 = get_template_and_user
({template_name
=> "serials/serials-collection.tmpl",
46 flagsrequired
=> {serials
=> '*'},
49 my $biblionumber = $query->param('biblionumber');
50 my @subscriptionid = $query->param('subscriptionid');
52 @subscriptionid= uniq
@subscriptionid;
53 @subscriptionid= sort @subscriptionid;
54 my $subscriptiondescs;
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;
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
},
71 my $subscription = GetSubscription
($subscriptionid);
72 my $expected = GetNextExpected
($subscriptionid);
74 $newserialseq, $newlastvalue1, $newlastvalue2, $newlastvalue3,
75 $newinnerloop1, $newinnerloop2, $newinnerloop3
76 ) = GetNextSeq
($subscription);
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 );
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);
89 $newlastvalue1, $newlastvalue2, $newlastvalue3, $newinnerloop1,
90 $newinnerloop2, $newinnerloop3, $subscriptionid
94 last if $nbissues == 1;
95 last if HasSubscriptionExpired
($subscriptionid) > 0;
97 print $query->redirect('/cgi-bin/koha/serials/serials-collection.pl?subscriptionid='.$subscriptionid);
100 my $subscriptioncount;
101 my ($location, $callnumber);
102 if (@subscriptionid){
103 my @subscriptioninformation=();
105 foreach my $subscriptionid (@subscriptionid){
106 my $subs= GetSubscription
($subscriptionid);
107 $closed = 1 if $subs->{closed
};
108 $subs->{opacnote
} =~ s/\n/\<br\/\
>/g
;
109 $subs->{missinglist
} =~ s/\n/\<br\/\
>/g
;
110 $subs->{recievedlist
} =~ s/\n/\<br\/\
>/g
;
111 ##these are display information
112 $subs->{ "periodicity" . $subs->{periodicity
} } = 1;
113 $subs->{ "numberpattern" . $subs->{numberpattern
} } = 1;
114 $subs->{ "status" . $subs->{'status'} } = 1;
115 $subs->{startdate
} = format_date
( $subs->{startdate
} );
116 $subs->{histstartdate
} = format_date
( $subs->{histstartdate
} );
117 if ( !defined $subs->{enddate
} || $subs->{enddate
} eq '0000-00-00' ) {
118 $subs->{enddate
} = '';
121 $subs->{enddate
} = format_date
( $subs->{enddate
} );
123 $subs->{'abouttoexpire'}=abouttoexpire
($subs->{'subscriptionid'});
124 $subs->{'subscriptionexpired'}=HasSubscriptionExpired
($subs->{'subscriptionid'});
125 $subs->{'subscriptionid'} = $subscriptionid; # FIXME - why was this lost ?
126 $location = GetAuthorisedValues
('LOC', $subs->{'location'});
127 $callnumber = $subs->{callnumber
};
128 push @
$subscriptiondescs,$subs;
129 my $tmpsubscription= GetFullSubscription
($subscriptionid);
130 @subscriptioninformation=(@
$tmpsubscription,@subscriptioninformation);
132 $template->param(closed
=> $closed);
133 $subscriptions=PrepareSerialsData
(\
@subscriptioninformation);
134 $subscriptioncount = CountSubscriptionFromBiblionumber
($subscriptiondescs->[0]{'biblionumber'});
136 $subscriptiondescs = GetSubscriptionsFromBiblionumber
($biblionumber) ;
137 my $subscriptioninformation = GetFullSubscriptionsFromBiblionumber
($biblionumber);
138 $subscriptions=PrepareSerialsData
($subscriptioninformation);
141 my $title = $subscriptiondescs->[0]{bibliotitle
};
142 my $yearmax=($subscriptions->[0]{year
} eq "manage" && scalar(@
$subscriptions)>1)?
$subscriptions->[1]{year
} :$subscriptions->[0]{year
};
143 my $yearmin=$subscriptions->[scalar(@
$subscriptions)-1]{year
};
144 my $subscriptionidlist="";
145 foreach my $subscription (@
$subscriptiondescs){
146 $subscriptionidlist.=$subscription->{'subscriptionid'}."," ;
147 $biblionumber = $subscription->{'bibnum'} unless ($biblionumber);
150 # warn "title : $title yearmax : $yearmax nombre d'elements dans le tableau :".scalar(@$subscriptions);
151 # use Data::Dumper; warn Dumper($subscriptions);
153 foreach (@
$location) {
154 $locationlib = $_->{'lib'} if $_->{'selected'};
157 chop $subscriptionidlist;
159 subscriptionidlist
=> $subscriptionidlist,
160 biblionumber
=> $biblionumber,
161 subscriptions
=> $subscriptiondescs,
162 years
=> $subscriptions,
165 bibliotitle
=> $title,
166 suggestion
=> C4
::Context
->preference("suggestion"),
167 virtualshelves
=> C4
::Context
->preference("virtualshelves"),
168 routing
=> C4
::Context
->preference("RoutingSerials"),
169 subscr
=>$query->param('subscriptionid'),
170 subscriptioncount
=> $subscriptioncount,
171 location
=> $locationlib,
172 callnumber
=> $callnumber,
173 uc(C4
::Context
->preference("marcflavour")) => 1,
174 serialsadditems
=> $subscriptiondescs->[0]{'serialsadditems'},
177 output_html_with_http_headers
$query, $cookie, $template->output;