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

(-)a/installer/data/mysql/atomicupdate/bug_20472b.perl (+8 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
        ('ArticleRequestsSupportedFormats', 'PHOTOCOPY', 'PHOTOCOPY|SCAN', 'List supported formats between vertical bars', 'free')
6
    });
7
    NewVersion( $DBversion, 20472, "Add syspref ArticleRequestsSupportedFormats");
8
}
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 60-65 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
60
('ArticleRequestsMandatoryFields', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''yes''', 'multiple'),
60
('ArticleRequestsMandatoryFields', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''yes''', 'multiple'),
61
('ArticleRequestsMandatoryFieldsItemOnly', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''item_only''', 'multiple'),
61
('ArticleRequestsMandatoryFieldsItemOnly', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''item_only''', 'multiple'),
62
('ArticleRequestsMandatoryFieldsRecordOnly', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''bib_only''', 'multiple'),
62
('ArticleRequestsMandatoryFieldsRecordOnly', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''bib_only''', 'multiple'),
63
('ArticleRequestsSupportedFormats', 'PHOTOCOPY', 'PHOTOCOPY|SCAN', 'List supported formats between vertical bars', 'free'),
63
('AudioAlerts','0','','Enable circulation sounds during checkin and checkout in the staff interface.  Not supported by all web browsers yet.','YesNo'),
64
('AudioAlerts','0','','Enable circulation sounds during checkin and checkout in the staff interface.  Not supported by all web browsers yet.','YesNo'),
64
('AuthDisplayHierarchy','0','','Display authority hierarchies','YesNo'),
65
('AuthDisplayHierarchy','0','','Display authority hierarchies','YesNo'),
65
('AuthFailureLog','0',NULL,'If enabled, log authentication failures','YesNo'),
66
('AuthFailureLog','0',NULL,'If enabled, log authentication failures','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +5 lines)
Lines 1234-1239 Circulation: Link Here
1234
                pages: Pages
1234
                pages: Pages
1235
                chapters: Chapters
1235
                chapters: Chapters
1236
            -
1236
            -
1237
        -
1238
            - "The following article request formats are supported:"
1239
            - pref: ArticleRequestsSupportedFormats
1240
            - "(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.)"
1241
1237
    Return claims:
1242
    Return claims:
1238
        -
1243
        -
1239
            - When marking a checkout as "claims returned",
1244
            - When marking a checkout as "claims returned",
1240
- 

Return to bug 20472