oils_i18n_gettext(
'circ.longoverdue.xact_open_on_zero',
'Leave transaction open when long-overdue balance equals zero. ' ||
- 'This leaves the lost copy on the patron record when it is paid',
+ 'This leaves the long-overdue copy on the patron record when it is paid',
'coust',
'description'
)
oils_i18n_gettext('circ.copy_alerts.forgive_fines_on_long_overdue_checkin',
'Forgive fines when checking out a long-overdue item and copy alert is suppressed?',
'coust', 'label'),
- oils_i18n_gettext('circ.copy_alerts.forgive_fines_on_lost_checkin',
+ oils_i18n_gettext('circ.copy_alerts.forgive_fines_on_long_overdue_checkin',
'Controls whether fines are automatically forgiven when checking out an '||
- 'item that has been marked as lost, and the corresponding copy alert has been '||
+ 'item that has been marked as long-overdue, and the corresponding copy alert has been '||
'suppressed.',
'coust', 'description'),
'bool');
--- /dev/null
+BEGIN;
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+
+-- fix two typo/pasto's in setting descriptions
+UPDATE config.org_unit_setting_type
+SET description = oils_i18n_gettext(
+ 'circ.copy_alerts.forgive_fines_on_long_overdue_checkin',
+ 'Controls whether fines are automatically forgiven when checking out an '||
+ 'item that has been marked as long-overdue, and the corresponding copy alert has been '||
+ 'suppressed.',
+ 'coust', 'description'
+)
+WHERE NAME = 'circ.copy_alerts.forgive_fines_on_long_overdue_checkin';
+
+UPDATE config.org_unit_setting_type
+SET description = oils_i18n_gettext(
+ 'circ.longoverdue.xact_open_on_zero',
+ 'Leave transaction open when long-overdue balance equals zero. ' ||
+ 'This leaves the long-overdue copy on the patron record when it is paid',
+ 'coust', 'description'
+)
+WHERE NAME = 'circ.longoverdue.xact_open_on_zero';
+
+COMMIT;
|Charge processing fee for damaged items|Optional processing fee billed to last patron who checked out the damaged item. Staff receive an alert with patron information and must confirm the billing.|Number(Dollar)| Disabled when set to 0
|Default item price|Replacement charge for lost items if price is unset in the *Copy Editor*. Does not apply if item price is set to $0|Number(dollars)|
|Disable Patron Credit|Do not allow patrons to accrue credit or pay fines/fees with accrued credit|True/False|
-|Leave transaction open when long overdue balance equals zero|Leave transaction open when long-overdue balance equals zero. This leaves the lost copy on the patron record when it is paid|True/False|
+|Leave transaction open when long overdue balance equals zero|Leave transaction open when long-overdue balance equals zero. This leaves the long-overdue copy on the patron record when it is paid|True/False|
|Leave transaction open when lost balance equals zero|Leave transaction open when lost balance equals zero. This leaves the lost copy on the patron record when it is paid|True/False|
|Long-Overdue Materials Processing Fee|The amount charged in addition to item price when an item is marked Long-Overdue|Number|Currency
|Lost materials processing fee|The amount charged in addition to item price when an item is marked lost.| Number|Currency