Allow fines to accrue during closings
[transitory.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.data.fine-when-closed.sql
1
2 INSERT INTO config.org_unit_setting_type
3     (name, label, description, grp, datatype)
4     VALUES (
5         'circ.fines.charge_when_closed',
6          oils_i18n_gettext(
7             'circ.fines.charge_when_closed',
8             'Charge fines on overdue circulations when closed',
9             'coust',
10             'label'
11         ),
12         oils_i18n_gettext(
13             'circ.fines.charge_when_closed',
14             'Normally, fines are not charged when a library is closed.  When set to True, fines will be charged during scheduled closings and normal weekly closed days.',
15             'coust',
16             'description'
17         ),
18         'circ',
19         'bool'
20     );
21