9222f7a6ca
The new tables have the same structure and constraints as the tables they archive with the following exceptions: * borrowernumber and biblionumber in old_reserves can be NULL * the FK constraints (e.g., for itemnumber) on old_reserves set the child column to NULL if the parent row is deleted instead of deleting the child row. * there is no FK constraint on old_issues.branchcode, allowing a branch to be deleted without changing archived requests. Some miscellaneous cleanup was done as part of this patch: * GetMemberIssuesAndFines (C4::Members) now uses bind variables * fixed POD for GetMemberIssuesAndFines Signed-off-by: Joshua Ferraro <jmf@liblime.com>
40 lines
1.1 KiB
Perl
Executable file
40 lines
1.1 KiB
Perl
Executable file
#!/usr/bin/perl -w
|
|
#-----------------------------------
|
|
# Script Name: longoverdue.pl
|
|
# Script Version: 1.0.0
|
|
# Date: 2004/04/01
|
|
# Author: Stephen Hedges shedges@skemotah.com
|
|
# Description: set itemlost status to '2'
|
|
# ("long overdue") on items more than 90
|
|
# days overdue.
|
|
# Usage: longoverdue.pl.
|
|
# Revision History:
|
|
# 1.0.0 2004/04/01: original version
|
|
#-----------------------------------
|
|
|
|
use strict;
|
|
BEGIN {
|
|
# find Koha's Perl modules
|
|
# test carefully before changing this
|
|
use FindBin;
|
|
eval { require "$FindBin::Bin/../kohalib.pl" };
|
|
}
|
|
use C4::Context;
|
|
use C4::Items;
|
|
|
|
my $dbh = C4::Context->dbh;
|
|
|
|
my $itemnos_sth=$dbh->prepare("SELECT items.itemnumber FROM issues,items WHERE items.itemnumber=issues.itemnumber AND DATE_SUB(CURDATE(),INTERVAL 90 DAY) > date_due AND (itemlost=0 OR itemlost IS NULL)");
|
|
|
|
# get itemnumbers of items more than 90 days overdue
|
|
$itemnos_sth->execute();
|
|
|
|
while (my $row=$itemnos_sth->fetchrow_arrayref) {
|
|
my $itemnumber=$row->[0];
|
|
|
|
ModItem({ itemlost => 2 }, undef, $itemnumber);
|
|
# print "$item\n";
|
|
}
|
|
|
|
$itemnos_sth->finish;
|
|
$dbh->disconnect;
|