Bug 9763 - Add callnumber column to "print summary" for moremember.pl
[koha.git] / serials / serials-collection.pl
blob742849414c93cd2ea679760e9dfde9af83fef203
1 #!/usr/bin/perl
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
11 # version.
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.
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/;
35 my $query = new CGI;
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",
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');
52 @subscriptionid= uniq @subscriptionid;
53 @subscriptionid= sort @subscriptionid;
54 my $subscriptiondescs;
55 my $subscriptions;
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);
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);
88 $seqsth->execute(
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=();
104 my $closed = 0;
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} = '';
120 else {
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'});
135 } else {
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);
152 my $locationlib;
153 foreach (@$location) {
154 $locationlib = $_->{'lib'} if $_->{'selected'};
157 chop $subscriptionidlist;
158 $template->param(
159 subscriptionidlist => $subscriptionidlist,
160 biblionumber => $biblionumber,
161 subscriptions => $subscriptiondescs,
162 years => $subscriptions,
163 yearmin => $yearmin,
164 yearmax =>$yearmax,
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;