3 # Copyright 2008 SARL Biblibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 # find Koha's Perl modules
26 # test carefully before changing this
28 eval { require "$FindBin::Bin/../kohalib.pl" };
31 use Koha
::Script
-cron
;
37 use C4
::Serials
::Frequency
;
39 use Date
::Calc qw
/Date_to_Days check_date/;
45 serialsUpdate.pl - change status of serial issues that are late
49 serialsUpdate.pl [ -h | -m ][ -v ] -c ][ --note "you are late" ][ --no-note ]
52 --h --help -? Brief help message
53 --man Full documentation
54 --verbose -v Verbose mode
55 -c Confirm: without this option, the script will report on affected serial
56 issues without modifying database
57 --note Note set on affected serial issues, by default "Automatically set to late"
58 --no-note Do not set a note on affected serial issues
62 my $dbh = C4
::Context
->dbh;
74 'v|verbose' => \
$verbose,
77 'no-note' => \
$nonote,
80 pod2usage
(1) if $help;
81 pod2usage
( -verbose
=> 2 ) if $man;
85 $verbose and !$confirm and print "### Database will not be modified ###\n";
87 if ( $note && $nonote ) {
90 if ( !$note && !$nonote ) {
91 $note = 'Automatically set to late';
93 $verbose and print $note ?
"Note : $note\n" : "No note\n";
95 # select all serials with not "irregular" periodicity that are late
96 my $sth = $dbh->prepare(
102 serial.publisheddate,
103 subscription.subscriptionid
105 LEFT JOIN subscription
106 ON (subscription.subscriptionid=serial.subscriptionid)
107 LEFT JOIN subscription_frequencies
108 ON (subscription.periodicity = subscription_frequencies.id)
109 WHERE serial.status = 1
110 AND subscription_frequencies.unit IS NOT NULL
111 AND DATE_ADD(planneddate, INTERVAL CAST(graceperiod AS SIGNED) DAY) < NOW()
112 AND subscription.closed = 0
117 while ( my $issue = $sth->fetchrow_hashref ) {
119 my $subscription = &GetSubscription
( $issue->{subscriptionid
} );
120 my $publisheddate = $issue->{publisheddate
};
122 if ( $subscription && $publisheddate && $publisheddate ne "0000-00-00" ) {
123 my $freqdata = GetSubscriptionFrequency
($subscription->{'periodicity'});
124 my $nextpublisheddate = GetNextDate
( $subscription, $publisheddate, $freqdata );
125 my $today = output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 });
127 if ( $nextpublisheddate && $today ) {
128 my ( $year, $month, $day ) = split( /-/, $nextpublisheddate );
129 my ( $tyear, $tmonth, $tday ) = split( /-/, $today );
130 if ( check_date
( $year, $month, $day )
131 && check_date
( $tyear, $tmonth, $tday )
132 && Date_to_Days
( $year, $month, $day ) <
133 Date_to_Days
( $tyear, $tmonth, $tday ) )
136 and ModSerialStatus
( $issue->{serialid
}, $issue->{serialseq
},
137 $issue->{planneddate
}, $issue->{publisheddate
}, $issue->{publisheddatetext
},
140 and print "Serial issue with id=" . $issue->{serialid
} . " updated\n";
145 and print "Error with serial("
147 . ") has no existent subscription("
148 . $issue->{subscriptionid
}
149 . ") attached or planneddate is wrong\n";