updating install dependancies
[koha.git] / serials / subscription-detail.pl
blobce47f5028b533dba5dcea8ee2dd045b1f2699511
1 #!/usr/bin/perl
3 # This file is part of Koha.
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.
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.
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
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;
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);
42 $subscriptionid = $query->param('subscriptionid');
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;
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...)
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 });
66 my ($user, $cookie, $sessionID, $flags)
67 = checkauth($query, 0, {catalogue => 1}, "intranet");
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++;
84 chop($weekarrayjs);
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 ?
88 $subs->{startdate}=format_date($subs->{startdate});
89 $subs->{firstacquidate}=format_date($subs->{firstacquidate});
90 $subs->{histstartdate}=format_date($subs->{histstartdate});
91 $subs->{enddate}=format_date($subs->{enddate});
92 $subs->{abouttoexpire}=abouttoexpire($subs->{subscriptionid});
94 $template->param($subs);
96 $template->param(
97 routing => $routing,
98 serialslist => \@serialslist,
99 totalissues => $totalissues,
100 hemisphere => $hemisphere,
102 $template->param(
103 "periodicity".($subs->{periodicity}?$subs->{periodicity}:'0') => 1,
104 "arrival".$subs->{dow} => 1,
105 "numberpattern".$subs->{numberpattern} => 1,
106 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
107 intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
110 output_html_with_http_headers $query, $cookie, $template->output;