View | Details | Raw Unified | Return to bug 28705
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_28705.perl (+9 lines)
Line 0 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q|
4
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
5
        ('CheckArticleRequestsOnRenewal', '0', NULL, 'Consider article requests in renewal decision', 'YesNo')
6
    |);
7
    # Always end with this (adjust the bug info)
8
    NewVersion( $DBversion, 28705, "New preference CheckArticleRequestsOnRenewal");
9
}
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 127-132 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
127
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
127
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
128
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
128
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
129
('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'),
129
('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'),
130
('CheckArticleRequestsOnRenewal', '0', NULL, 'Consider article requests in renewal decision', 'YesNo'),
130
('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'),
131
('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'),
131
('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'),
132
('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'),
132
('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'),
133
('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'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 1244-1249 Circulation: Link Here
1244
            - "The following article request formats are supported:"
1244
            - "The following article request formats are supported:"
1245
            - pref: ArticleRequestsSupportedFormats
1245
            - pref: ArticleRequestsSupportedFormats
1246
            - "(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.)"
1246
            - "(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.)"
1247
        -
1248
            - pref: CheckArticleRequestsOnRenewal
1249
              choices:
1250
                  0: Do not allow
1251
                  1: Allow
1252
            - current article requests to block renewal of an item. For article requests on biblio level, renewal is possible only when another item is available.
1247
1253
1248
    Return claims:
1254
    Return claims:
1249
        -
1255
        -
1250
- 

Return to bug 28705