Script to handle fines from overdues and the like
This commit is contained in:
parent
d1773de174
commit
e8d567d4f7
1 changed files with 17 additions and 0 deletions
17
fines.pl
Executable file
17
fines.pl
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use C4::Database;
|
||||
use C4::Stats;
|
||||
|
||||
#script to total up fines and alter accounts
|
||||
#should be run nightly with a cron job or the like
|
||||
#written by chris@katipo.co.nz 30/12/99
|
||||
|
||||
my $dbh=C4Connect;
|
||||
|
||||
my $count=Overdues;
|
||||
print $count;
|
||||
|
||||
|
||||
$dbh->disconnect;
|
Loading…
Reference in a new issue