d8bbc4ec5c
fines.pl will levy fines and place them on patrons accounts, it will also then attempt to notify the borrowers. Either by email, sms, fax etc depending on what the patron has set as preferred contact. Email and letters are currently working fine, fax, and sms need to be worked on. Test with caution in your library, you dont want to be bombarding patrons with emails :)
19 lines
441 B
SQL
19 lines
441 B
SQL
-- MySQL dump 9.08
|
|
--
|
|
-- Host: localhost Database: Koha
|
|
---------------------------------------------------------
|
|
-- Server version 4.0.13-log
|
|
|
|
--
|
|
-- Table structure for table 'attempted_contacts'
|
|
--
|
|
|
|
CREATE TABLE attempted_contacts (
|
|
borrowernumber int(11) default NULL,
|
|
method varchar(50) default NULL,
|
|
address varchar(255) default NULL,
|
|
result int(11) default NULL,
|
|
message text,
|
|
date datetime default NULL
|
|
) TYPE=MyISAM;
|
|
|