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
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 use C4::Dates qw/format_date/;
27 use C4::Search qw/enabled_staff_search_views/;
28 use Date::Calc qw/Today Day_of_Year Week_of_Year Add_Delta_Days/;
32 my $op = $query->param('op') || q{};
33 my $issueconfirmed = $query->param('issueconfirmed');
34 my $dbh = C4::Context->dbh;
35 my ($template, $loggedinuser, $cookie, $hemisphere);
36 my $subscriptionid = $query->param('subscriptionid');
37 my $subs = GetSubscription($subscriptionid);
39 $subs->{enddate} = GetExpirationDate($subscriptionid);
41 if ($op && $op eq 'del') {
42 if ($subs->{'cannotedit'}){
43 carp "Attempt to delete subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
44 print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
46 DelSubscription($subscriptionid);
47 print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=serials-home.pl\"></html>";
51 my ($totalissues,@serialslist) = GetSerials($subscriptionid);
52 $totalissues-- if $totalissues; # the -1 is to have 0 if this is a new subscription (only 1 issue)
53 # the subscription must be deletable if there is NO issues for a reason or another (should not happend, but...)
55 # Permission needed if it is a deletion (del) : delete_subscription
56 # Permission needed otherwise : *
57 my $permission = ($op eq "del") ? "delete_subscription" : "*";
59 ($template, $loggedinuser, $cookie)
60 = get_template_and_user({template_name => "serials/subscription-detail.tmpl",
64 flagsrequired => {serials => $permission},
68 $$subs{enddate} ||= GetExpirationDate($subscriptionid);
71 if ($$subs{'cannotedit'}){
72 carp "Attempt to delete subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
73 print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
77 # Asking for confirmation if the subscription has not strictly expired yet or if it has linked issues
78 my $strictlyexpired = HasSubscriptionStrictlyExpired($subscriptionid);
79 my $linkedissues = CountIssues($subscriptionid);
80 my $countitems = HasItems($subscriptionid);
81 if ($strictlyexpired == 0 || $linkedissues > 0 || $countitems>0) {
82 $template->param(NEEDSCONFIRMATION => 1);
83 if ($strictlyexpired == 0) { $template->param("NOTEXPIRED" => 1); }
84 if ($linkedissues > 0) { $template->param("LINKEDISSUES" => 1); }
85 if ($countitems > 0) { $template->param("LINKEDITEMS" => 1); }
87 $issueconfirmed = "1";
89 # If it's ok to delete the subscription, we do so
90 if ($issueconfirmed eq "1") {
91 &DelSubscription($subscriptionid);
92 print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=serials-home.pl\"></html>";
96 my $hasRouting = check_routing($subscriptionid);
98 my ($user, $sessionID, $flags);
99 ($user, $cookie, $sessionID, $flags)
100 = checkauth($query, 0, {catalogue => 1}, "intranet");
102 # COMMENT hdl : IMHO, we should think about passing more and more data hash to template->param rather than duplicating code a new coding Guideline ?
104 for my $date qw(startdate enddate firstacquidate histstartdate histenddate){
105 $$subs{$date} = format_date($$subs{$date}) if $date && $$subs{$date};
107 $subs->{location} = GetKohaAuthorisedValueLib("LOC",$subs->{location});
108 $subs->{abouttoexpire} = abouttoexpire($subs->{subscriptionid});
109 $template->param(%{ $subs });
110 $template->param(biblionumber_for_new_subscription => $subs->{bibnum});
111 my @irregular_issues = split /,/, $subs->{irregularity};
113 if (! $subs->{numberpattern}) {
114 $subs->{numberpattern} = q{};
116 if (! $subs->{dow}) {
119 if (! $subs->{periodicity}) {
120 $subs->{periodicity} = '0';
122 my $default_bib_view = get_default_view();
124 subscriptionid => $subscriptionid,
125 serialslist => \@serialslist,
126 hasRouting => $hasRouting,
127 totalissues => $totalissues,
128 hemisphere => $hemisphere,
129 cannotedit =>(C4::Context->preference('IndependantBranches') &&
130 C4::Context->userenv &&
131 C4::Context->userenv->{flags} % 2 !=1 &&
132 C4::Context->userenv->{branch} && $subs->{branchcode} &&
133 (C4::Context->userenv->{branch} ne $subs->{branchcode})),
134 'periodicity' . $subs->{periodicity} => 1,
135 'arrival' . $subs->{dow} => 1,
136 'numberpattern' . $subs->{numberpattern} => 1,
137 intranetstylesheet => C4::Context->preference('intranetstylesheet'),
138 intranetcolorstylesheet => C4::Context->preference('intranetcolorstylesheet'),
139 irregular_issues => scalar @irregular_issues,
140 default_bib_view => $default_bib_view,
143 output_html_with_http_headers $query, $cookie, $template->output;
145 sub get_default_view {
146 my $defaultview = C4::Context->preference('IntranetBiblioDefaultView');
147 my %views = C4::Search::enabled_staff_search_views();
148 if ( $defaultview eq 'isbd' && $views{can_view_ISBD} ) {
151 elsif ( $defaultview eq 'marc' && $views{can_view_MARC} ) {
154 elsif ( $defaultview eq 'labeled_marc' && $views{can_view_labeledMARC} ) {
155 return 'labeledMARCdetail';