'coust', 'description'),
'bool', null)
+,( 'circ.forgive_lost_on_checkin', 'circ',
+ oils_i18n_gettext('circ.forgive_lost_on_checkin',
+ 'Forgive lost item billing when returned',
+ 'coust', 'label'),
+ oils_i18n_gettext('circ.forgive_lost_on_checkin',
+ 'Forgive lost item billing when returned',
+ 'coust', 'description'),
+ 'bool', null)
+
+,( 'circ.forgive_lost_proc_fee_on_checkin', 'circ',
+ oils_i18n_gettext('circ.forgive_lost_proc_fee_on_checkin',
+ 'Forgive processing fee on lost item return',
+ 'coust', 'label'),
+ oils_i18n_gettext('circ.forgive_lost_proc_fee_on_checkin',
+ 'Forgive processing fee when lost item returned',
+ 'coust', 'description'),
+ 'bool', null)
+
+,( 'circ.forgive_overdue_on_lost', 'finance',
+ oils_i18n_gettext('circ.forgive_overdue_on_lost',
+ 'Forgive overdue fines when items are marked lost',
+ 'coust', 'label'),
+ oils_i18n_gettext('circ.forgive_overdue_on_lost',
+ 'Forgive overdue fines when items are marked lost',
+ 'coust', 'description'),
+ 'bool', null)
+
,( 'circ.void_lost_on_checkin', 'circ',
oils_i18n_gettext('circ.void_lost_on_checkin',
'Void lost item billing when returned',
--- /dev/null
+-- Evergreen DB patch XXXX.data.lost_forgive_not_void.sql
+--
+-- Insert new org unit settings for Forgive (not void)
+-- regarding Lost items
+--
+BEGIN;
+
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+
+INSERT into config.org_unit_setting_type
+( name, grp, label, description, datatype, fm_class ) VALUES
+
+( 'circ.forgive_lost_on_checkin', 'circ',
+ oils_i18n_gettext('circ.forgive_lost_on_checkin',
+ 'Forgive lost item billing when returned',
+ 'coust', 'label'),
+ oils_i18n_gettext('circ.forgive_lost_on_checkin',
+ 'Forgive lost item billing when returned',
+ 'coust', 'description'),
+ 'bool', null)
+
+,( 'circ.forgive_lost_proc_fee_on_checkin', 'circ',
+ oils_i18n_gettext('circ.forgive_lost_proc_fee_on_checkin',
+ 'Forgive processing fee on lost item return',
+ 'coust', 'label'),
+ oils_i18n_gettext('circ.forgive_lost_proc_fee_on_checkin',
+ 'Forgive processing fee when lost item returned',
+ 'coust', 'description'),
+ 'bool', null)
+
+,( 'circ.forgive_overdue_on_lost', 'finance',
+ oils_i18n_gettext('circ.forgive_overdue_on_lost',
+ 'Forgive overdue fines when items are marked lost',
+ 'coust', 'label'),
+ oils_i18n_gettext('circ.forgive_overdue_on_lost',
+ 'Forgive overdue fines when items are marked lost',
+ 'coust', 'description'),
+ 'bool', null)
+;
+
+COMMIT;