Merge branch 'master' of /usr/local/git/koha_base.git/
[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::Manip;
27
28 my $query = new CGI;
29 my $op = $query->param('op');
30 my $dbh = C4::Context->dbh;
31 my $sth;
32 # my $id;
33 my ($template, $loggedinuser, $cookie, $subs);
34 my ($subscriptionid,$auser,$librarian,$cost,$aqbooksellerid, $aqbooksellername,$aqbudgetid, $bookfundid, $startdate, $periodicity,
35     $firstacquidate, $dow, $irregularity, $sublength, $subtype, $numberpattern, $numberlength, $weeklength, $monthlength,
36     $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,$innerloop1,
37     $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,$innerloop2,
38     $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,$innerloop3,
39     $numberingmethod, $status, $biblionumber, $bibliotitle, $callnumber, $notes, $hemisphere,$letter,$manualhistory,$histstartdate,$enddate,$missinglist,$recievedlist,$opacnote,$librariannote);
40
41 $subscriptionid = $query->param('subscriptionid');
42
43
44 if ($op eq 'del') {
45     &DelSubscription($subscriptionid);
46     print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=serials-home.pl\"></html>";
47     exit;
48
49 }
50 my $subs = &GetSubscription($subscriptionid);
51 # use Data::Dumper; warn $subscriptionid; warn Dumper($subs);
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) = UnixDate("today", "%Y", "%m", "%d");
72 my $firstday = Date_DayOfYear($month,$day,$year);
73 my $wkno = Date_WeekOfYear($month,$day,$year,1); # 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) = 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;