Bug 3482 Allow hold notices to be sent in print form
authorJesse Weaver <pianohacker@gmail.com>
Thu, 11 Jun 2009 20:49:15 +0000 (14:49 -0600)
committerJ. David Bavousett <dbavousett@ptfs.com>
Mon, 22 Feb 2010 15:52:04 +0000 (10:52 -0500)
commit63e871dd401c33f288202358639bf098af596148
treee1f6e86b97c0c4dead4bc2b32d71cd987599f186
parentb7e35a37256054c2a1d07a4fcd965283aa91968e
Bug 3482 Allow hold notices to be sent in print form

This is done by saving the notices in the message_queue table with
type 'print'. The notices are generated from a notice named
HOLD_PRINT. At the end of the day, they are dumped to an HTML file and
marked as sent by a new cronjob.

This setup is intended to be temporary; modules/batch/ shouldn't be around
forever.

Mandatory SQL:
INSERT INTO message_transport_types (message_transport_type) values ('print');
C4/Letters.pm
C4/Reserves.pm
installer/data/mysql/en/mandatory/message_transport_types.sql
koha-tmpl/intranet-tmpl/prog/en/modules/batch/print-notices.tmpl [new file with mode: 0644]
misc/cronjobs/gather_print_notices.pl [new file with mode: 0755]