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
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
23 use C4
::Dates qw
/format_date/;
27 use Date
::Calc qw
/Today Day_of_Year Week_of_Year Add_Delta_Days/;
31 my $op = $query->param('op') || q{};
32 my $issueconfirmed = $query->param('issueconfirmed');
33 my $dbh = C4
::Context
->dbh;
34 my ($template, $loggedinuser, $cookie, $hemisphere);
35 my $subscriptionid = $query->param('subscriptionid');
36 my $subs = GetSubscription
($subscriptionid);
38 ($template, $loggedinuser, $cookie)
39 = get_template_and_user
({template_name
=> "serials/subscription-detail.tmpl",
43 flagsrequired
=> {serials
=> 1},
47 $$subs{enddate
} ||= GetExpirationDate
($subscriptionid);
50 if ($$subs{'cannotedit'}){
51 carp
"Attempt to delete subscription $subscriptionid by ".C4
::Context
->userenv->{'id'}." not allowed";
52 print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
56 # Asking for confirmation if the subscription has not strictly expired yet or if it has linked issues
57 my $strictlyexpired = HasSubscriptionStrictlyExpired
($subscriptionid);
58 my $linkedissues = CountIssues
($subscriptionid);
59 if ($strictlyexpired == 0 || $linkedissues > 0) {
60 $template->param(NEEDSCONFIRMATION
=> 1);
61 if ($strictlyexpired == 0) { $template->param("NOTEXPIRED" => 1); }
62 if ($linkedissues > 0) { $template->param("LINKEDISSUES" => 1); }
64 $issueconfirmed = "1";
66 # If it's ok to delete the subscription, we do so
67 if ($issueconfirmed eq "1") {
68 &DelSubscription
($subscriptionid);
69 print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=serials-home.pl\"></html>";
73 my ($routing, @routinglist) = getroutinglist
($subscriptionid);
74 my ($totalissues,@serialslist) = GetSerials
($subscriptionid);
75 $totalissues-- if $totalissues; # the -1 is to have 0 if this is a new subscription (only 1 issue)
76 # the subscription must be deletable if there is NO issues for a reason or another (should not happend, but...)
78 my ($user, $sessionID, $flags);
79 ($user, $cookie, $sessionID, $flags)
80 = checkauth
($query, 0, {catalogue
=> 1}, "intranet");
82 # COMMENT hdl : IMHO, we should think about passing more and more data hash to template->param rather than duplicating code a new coding Guideline ?
84 for my $date qw(startdate enddate firstacquidate histstartdate histenddate){
85 $$subs{$_} = format_date
($$subs{$_});
87 $subs->{abouttoexpire
} = abouttoexpire
($subs->{subscriptionid
});
89 $template->param($subs);
90 $template->param(biblionumber_for_new_subscription
=> $subs->{bibnum
});
91 my @irregular_issues = split /,/, $subs->{irregularity
};
93 if (! $subs->{numberpattern
}) {
94 $subs->{numberpattern
} = q{};
99 if (! $subs->{periodicity
}) {
100 $subs->{periodicity
} = '0';
103 subscriptionid
=> $subscriptionid,
105 serialslist
=> \
@serialslist,
106 totalissues
=> $totalissues,
107 hemisphere
=> $hemisphere,
108 cannotedit
=>(C4
::Context
->preference('IndependantBranches') &&
109 C4
::Context
->userenv &&
110 C4
::Context
->userenv->{flags
} % 2 !=1 &&
111 C4
::Context
->userenv->{branch
} && $subs->{branchcode
} &&
112 (C4
::Context
->userenv->{branch
} ne $subs->{branchcode
})),
113 'periodicity' . $subs->{periodicity
} => 1,
114 'arrival' . $subs->{dow
} => 1,
115 'numberpattern' . $subs->{numberpattern
} => 1,
116 intranetstylesheet
=> C4
::Context
->preference('intranetstylesheet'),
117 intranetcolorstylesheet
=> C4
::Context
->preference('intranetcolorstylesheet'),
118 irregular_issues
=> scalar @irregular_issues,
121 output_html_with_http_headers
$query, $cookie, $template->output;