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" };
37 use Date
::Calc qw
/Date_to_Days check_date/;
43 serialsUpdate.pl - change status of serial issues that are late
47 serialsUpdate.pl [ -h | -m ][ -v ] -c ][ --note "you are late" ][ --no-note ]
50 --h --help -? Brief help message
51 --man Full documentation
52 --verbose -v Verbose mode
53 -c Confirm: without this option, the script will report on affected serial
54 issues without modifying database
55 --note Note set on affected serial issues, by default "Automatically set to late"
56 --no-note Do not set a note on affected serial issues
60 my $dbh = C4
::Context
->dbh;
72 'v|verbose' => \
$verbose,
75 'no-note' => \
$nonote,
78 pod2usage
(1) if $help;
79 pod2usage
( -verbose
=> 2 ) if $man;
83 $verbose and !$confirm and print "### Database will not be modified ###\n";
85 if ( $note && $nonote ) {
88 if ( !$note && !$nonote ) {
89 $note = 'Automatically set to late';
91 $verbose and print $note ?
"Note : $note\n" : "No note\n";
93 # select all serials with not "irregular" periodicity that are late
94 my $sth = $dbh->prepare(
100 serial.publisheddate,
101 subscription.subscriptionid
103 LEFT JOIN subscription
104 ON (subscription.subscriptionid=serial.subscriptionid)
105 LEFT JOIN subscription_frequencies
106 ON (subscription.periodicity = subscription_frequencies.id)
107 WHERE serial.status = 1
108 AND subscription_frequencies.unit IS NOT NULL
109 AND DATE_ADD(planneddate, INTERVAL CAST(graceperiod AS SIGNED) DAY) < NOW()
110 AND subscription.closed = 0
115 while ( my $issue = $sth->fetchrow_hashref ) {
117 my $subscription = &GetSubscription
( $issue->{subscriptionid
} );
118 my $publisheddate = $issue->{publisheddate
};
120 if ( $subscription && $publisheddate && $publisheddate ne "0000-00-00" ) {
121 my $nextpublisheddate = GetNextDate
( $subscription, $publisheddate );
122 my $today = output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 });
124 if ( $nextpublisheddate && $today ) {
125 my ( $year, $month, $day ) = split( /-/, $nextpublisheddate );
126 my ( $tyear, $tmonth, $tday ) = split( /-/, $today );
127 if ( check_date
( $year, $month, $day )
128 && check_date
( $tyear, $tmonth, $tday )
129 && Date_to_Days
( $year, $month, $day ) <
130 Date_to_Days
( $tyear, $tmonth, $tday ) )
133 and ModSerialStatus
( $issue->{serialid
}, $issue->{serialseq
},
134 $issue->{planneddate
}, $issue->{publisheddate
}, $issue->{publisheddatetext
},
137 and print "Serial issue with id=" . $issue->{serialid
} . " updated\n";
142 and print "Error with serial("
144 . ") has no existent subscription("
145 . $issue->{subscriptionid
}
146 . ") attached or planneddate is wrong\n";