From 4f26c8adad9738999d3f53773f337b65938d34a3 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 10 Aug 2020 13:37:42 +0000 Subject: [PATCH] Bug 21549: Database revision for new preference Introducing LockExpiredDelay. Test plan: Run upgrade. Check syspref. Signed-off-by: Marcel de Rooy Signed-off-by: Michal Denar Signed-off-by: Nick Clemens --- installer/data/mysql/atomicupdate/bug_21549.perl | 9 +++++++++ installer/data/mysql/mandatory/sysprefs.sql | 1 + .../prog/en/modules/admin/preferences/patrons.pref | 6 ++++++ 3 files changed, 16 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_21549.perl diff --git a/installer/data/mysql/atomicupdate/bug_21549.perl b/installer/data/mysql/atomicupdate/bug_21549.perl new file mode 100644 index 00000000000..ee18dbb96c8 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_21549.perl @@ -0,0 +1,9 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + $dbh->do(q| + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) + VALUES ('LockExpiredDelay','','','Delay for locking expired patrons (empty means no locking)','Integer') + |); + + NewVersion( $DBversion, 21549, "Add pref LockExpiredDelay"); +} diff --git a/installer/data/mysql/mandatory/sysprefs.sql b/installer/data/mysql/mandatory/sysprefs.sql index b06c51e9cde..c5ca98c35f1 100644 --- a/installer/data/mysql/mandatory/sysprefs.sql +++ b/installer/data/mysql/mandatory/sysprefs.sql @@ -315,6 +315,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('LocalHoldsPriority', '0', NULL, 'Enables the LocalHoldsPriority feature', 'YesNo'), ('LocalHoldsPriorityItemControl', 'holdingbranch', 'holdingbranch|homebranch', 'decides if the feature operates using the item''s home or holding library.', 'Choice'), ('LocalHoldsPriorityPatronControl', 'PickupLibrary', 'HomeLibrary|PickupLibrary', 'decides if the feature operates using the library set as the patron''s home library, or the library set as the pickup library for the given hold.', 'Choice'), +('LockExpiredDelay','','','Delay for locking expired patrons (empty means no locking)','Integer'), ('makePreviousSerialAvailable','0','','make previous serial automatically available when collecting a new serial. Please note that the item-level_itypes syspref must be set to specific item.','YesNo'), ('Mana','2',NULL,'request to Mana Webservice. Mana centralize common information between other Koha to facilitate the creation of new subscriptions, vendors, report queries etc... You can search, share, import and comment the content of Mana.','Choice'), ('ManInvInNoissuesCharge','1',NULL,'MANUAL_INV charges block checkouts (added to noissuescharge).','YesNo'), diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref index ef3f6550bac..aae44319e4a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref @@ -100,6 +100,12 @@ Patrons: 1: Allow patrons 0: Allow only staff - "to allow/disallow auto-renewal for account. If allowed a patron will be able to update their own account to allow/disallow auto-renewal." + - + - Lock expired patrons after + - pref: LockExpiredDelay + class: integer + - days. Leave empty to disable this behavior. + Membership expiry: - - When renewing borrowers, base the new expiry date on -- 2.20.1