Deleting Date::Manip
[koha.git] / serials / subscription-detail.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 use strict;
19 use CGI;
20 use C4::Auth;
21 use C4::Koha;
22 use C4::Date;
23 use C4::Serials;
24 use C4::Output;
25 use C4::Context;
26 use Date::Calc qw/Today Day_of_Year Week_of_Year Add_Delta_Days/;
27 #use Date::Manip;
28
29 my $query = new CGI;
30 my $op = $query->param('op');
31 my $dbh = C4::Context->dbh;
32 my $sth;
33 # my $id;
34 my ($template, $loggedinuser, $cookie, $subs);
35 my ($subscriptionid,$auser,$librarian,$cost,$aqbooksellerid, $aqbooksellername,$aqbudgetid, $bookfundid, $startdate, $periodicity,
36     $firstacquidate, $dow, $irregularity, $sublength, $subtype, $numberpattern, $numberlength, $weeklength, $monthlength,
37     $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,$innerloop1,
38     $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,$innerloop2,
39     $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,$innerloop3,
40     $numberingmethod, $status, $biblionumber, $bibliotitle, $callnumber, $notes, $hemisphere,$letter,$manualhistory,$histstartdate,$enddate,$missinglist,$recievedlist,$opacnote,$librariannote);
41
42 $subscriptionid = $query->param('subscriptionid');
43
44
45 if ($op eq 'del') {
46     &DelSubscription($subscriptionid);
47     print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=serials-home.pl\"></html>";
48     exit;
49
50 }
51 my $subs = &GetSubscription($subscriptionid);
52 my ($routing, @routinglist) = getroutinglist($subscriptionid);
53 my ($totalissues,@serialslist) = GetSerials($subscriptionid);
54 $totalissues-- if $totalissues; # the -1 is to have 0 if this is a new subscription (only 1 issue)
55 # the subscription must be deletable if there is NO issues for a reason or another (should not happend, but...)
56
57 ($template, $loggedinuser, $cookie)
58 = get_template_and_user({template_name => "serials/subscription-detail.tmpl",
59                 query => $query,
60                 type => "intranet",
61                 authnotrequired => 0,
62                 flagsrequired => {serials => 1},
63                 debug => 1,
64                 });
65
66 my ($user, $cookie, $sessionID, $flags)
67     = checkauth($query, 0, {catalogue => 1}, "intranet");
68
69 my $weekarrayjs='';
70 my $count = 0;
71 my ($year, $month, $day) = Today;
72 my $firstday = Day_of_Year($year,$month,$day);
73 my ($wkno,$yr) = Week_of_Year($year,$month,$day); # week starting monday
74 my $weekno = $wkno;
75 for(my $i=$firstday;$i<($firstday+365);$i=$i+7){
76             $count = $i;
77             if($wkno > 52){$year++; $wkno=1;}
78             if($count>365){$count=$i-365;}
79             my ($y,$m,$d) =  Add_Delta_Days($year,1,1, $count - 1);#Date_NthDayOfYear($year,$count);
80             my $output = "$y-$m-$d";
81             $weekarrayjs .= "'Wk $wkno: ".format_date($output)."',";
82             $wkno++;
83     }
84 chop($weekarrayjs);
85
86 # COMMENT hdl : IMHO, we should think about passing more and more data hash to template->param rather than duplicating code a new coding Guideline ?
87 $subs->{startdate}=format_date($subs->{startdate});
88 $subs->{firstacquidate}=format_date($subs->{firstacquidate});
89 $subs->{histstartdate}=format_date($subs->{histstartdate});
90 $subs->{enddate}=format_date($subs->{enddate});
91 $subs->{abouttoexpire}=abouttoexpire($subs->{subscriptionid});
92
93 $template->param($subs);
94
95 $template->param(
96     routing => $routing,
97     serialslist => \@serialslist,
98     totalissues => $totalissues,
99     hemisphere => $hemisphere,
100     );
101 $template->param(
102             "periodicity".$subs->{periodicity} => 1,
103             "arrival".$subs->{dow} => 1,
104             "numberpattern".$subs->{numberpattern} => 1,
105             intranetstylesheet => C4::Context->preference("intranetstylesheet"),
106             intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"), 
107             );
108
109 output_html_with_http_headers $query, $cookie, $template->output;