Bug 13904: Make unimarc_field_4XX displays usefull 200 subfield data
[koha.git] / serials / checkexpiration.pl
blobe5abce18b0f9c394d3dbacf88ae3f03bfbb07d45
1 #!/usr/bin/perl
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 =head1 NAME
22 checkexpiration.pl
24 =head1 DESCRIPTION
26 This script check what subscription will expire before C<$datenumber $datelimit>
28 =head1 PARAMETERS
30 =over 4
32 =item title
33 To filter subscription on title
35 =item issn
36 To filter subscription on issn
38 =item date
39 The date to filter on.
41 =back
43 =cut
45 use strict;
46 use warnings;
47 use CGI qw ( -utf8 );
48 use C4::Auth;
49 use C4::Serials; # GetExpirationDate
50 use C4::Output;
51 use C4::Context;
52 use C4::Dates qw/format_date format_date_in_iso/;
53 use Date::Calc qw/Today Date_to_Days/;
55 my $query = new CGI;
57 my ( $template, $loggedinuser, $cookie ) = get_template_and_user (
59 template_name => "serials/checkexpiration.tt",
60 query => $query,
61 type => "intranet",
62 authnotrequired => 0,
63 flagsrequired => { serials => 'check_expiration' },
64 debug => 1,
68 my $title = $query->param('title');
69 my $issn = $query->param('issn');
70 my $date = format_date_in_iso($query->param('date'));
72 if ($date) {
73 my @subscriptions = SearchSubscriptions({ title => $title, issn => $issn, orderby => 'title' });
74 my @subscriptions_loop;
76 foreach my $subscription ( @subscriptions ) {
77 my $subscriptionid = $subscription->{'subscriptionid'};
78 my $expirationdate = GetExpirationDate($subscriptionid);
80 $subscription->{expirationdate} = $expirationdate;
81 next if $expirationdate !~ /\d{4}-\d{2}-\d{2}/; # next if not in ISO format.
82 next if $subscription->{closed};
83 if ( Date_to_Days(split "-",$expirationdate) < Date_to_Days(split "-",$date) &&
84 Date_to_Days(split "-",$expirationdate) > Date_to_Days(&Today) ) {
85 $subscription->{expirationdate}=format_date($subscription->{expirationdate});
86 push @subscriptions_loop,$subscription;
90 $template->param (
91 title => $title,
92 issn => $issn,
93 numsubscription => scalar @subscriptions_loop,
94 date => format_date($date),
95 subscriptions_loop => \@subscriptions_loop,
96 "BiblioDefaultView".C4::Context->preference("BiblioDefaultView") => 1,
99 $template->param (
100 (uc(C4::Context->preference("marcflavour"))) => 1
102 output_html_with_http_headers $query, $cookie, $template->output;