You can configure Horizon to prompt staff members to choose whether the expiration date should be changed if the borrower location or btype changes.
If your library charges patrons for library cards, you may want to configure this setting because the charge may be reapplied when the expiration date is updated.
To enable the feature
1 | Run this SQL command on your database: |
IF NOT EXISTS (SELECT * FROM feature_activation WHERE feature_activation='ExpWarn')
BEGIN
INSERT feature_activation (feature_activation, descr, enabled)
VALUES ('ExpWarn', 'Prompt if changing borrower expiration date', 1)
END
ELSE
BEGIN
UPDATE feature_activation SET enabled=1 WHERE feature_activation=’ExpWarn’
END
GO
© 1998-2017 Sirsi Corporation