From 00dfc938c9ef0fcff382e56a16db2a7947a2bb16 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 26 Jul 2021 12:15:56 +0000 Subject: [PATCH] Bug 28705: New preference CheckArticleRequestsOnRenewal Test plan: Run dbrev, check preferences. Signed-off-by: Martin Renvoize --- installer/data/mysql/atomicupdate/bug_28705.perl | 9 +++++++++ installer/data/mysql/mandatory/sysprefs.sql | 1 + .../prog/en/modules/admin/preferences/circulation.pref | 6 ++++++ 3 files changed, 16 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_28705.perl diff --git a/installer/data/mysql/atomicupdate/bug_28705.perl b/installer/data/mysql/atomicupdate/bug_28705.perl new file mode 100644 index 0000000000..f29684aba5 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_28705.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 + ('CheckArticleRequestsOnRenewal', '0', NULL, 'Consider article requests in renewal decision', 'YesNo') + |); + # Always end with this (adjust the bug info) + NewVersion( $DBversion, 28705, "New preference CheckArticleRequestsOnRenewal"); +} diff --git a/installer/data/mysql/mandatory/sysprefs.sql b/installer/data/mysql/mandatory/sysprefs.sql index 68877bbbce..ce4809dcac 100644 --- a/installer/data/mysql/mandatory/sysprefs.sql +++ b/installer/data/mysql/mandatory/sysprefs.sql @@ -126,6 +126,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'), ('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'), ('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'), +('CheckArticleRequestsOnRenewal', '0', NULL, 'Consider article requests in renewal decision', 'YesNo'), ('CheckPrevCheckout','hardno','hardyes|softyes|softno|hardno','By default, for every item checked out, should we warn if the patron has borrowed that item in the past?','Choice'), ('CheckPrevCheckoutDelay','0', NULL,'Maximum number of days that will trigger a warning if the patron has borrowed that item in the past when CheckPrevCheckout is enabled.','free'), ('CircAutoPrintQuickSlip','qslip',NULL,'Choose what should happen when an empty barcode field is submitted in circulation: Display a print quick slip window, Display a print slip window or Clear the screen.','Choice'), diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref index 6c2a33bc6c..236ad3b8e7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref @@ -1245,6 +1245,12 @@ Circulation: - "The following article request formats are supported:" - pref: ArticleRequestsSupportedFormats - "(Valid choices are currently: PHOTOCOPY and SCAN. Separate the supported formats by a vertical bar. The first listed format is selected by default when you request via the OPAC.)" + - + - pref: CheckArticleRequestsOnRenewal + choices: + 0: Do not allow + 1: Allow + - current article requests to block renewal of an item. For article requests on biblio level, renewal is possible only when another item is available. Return claims: - -- 2.20.1