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 126-131 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
126
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
126
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
127
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
127
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
128
('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'),
128
('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'),
129
('CheckArticleRequestsOnRenewal', '0', NULL, 'Consider article requests in renewal decision', 'YesNo'),
129
('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'),
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'),
130
('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'),
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'),
131
('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'),
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'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 1245-1250 Circulation: Link Here
1245
            - "The following article request formats are supported:"
1245
            - "The following article request formats are supported:"
1246
            - pref: ArticleRequestsSupportedFormats
1246
            - pref: ArticleRequestsSupportedFormats
1247
            - "(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
            - "(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.)"
1248
        -
1249
            - pref: CheckArticleRequestsOnRenewal
1250
              choices:
1251
                  0: Do not allow
1252
                  1: Allow
1253
            - current article requests to block renewal of an item. For article requests on biblio level, renewal is possible only when another item is available.
1248
1254
1249
    Return claims:
1255
    Return claims:
1250
        -
1256
        -
1251
- 

Return to bug 28705