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/sysprefs.sql (+1 lines)
Lines 59-64 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
59
('ArticleRequestsMandatoryFields', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''yes''', 'multiple'),
59
('ArticleRequestsMandatoryFields', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''yes''', 'multiple'),
60
('ArticleRequestsMandatoryFieldsItemsOnly', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''item_only''', 'multiple'),
60
('ArticleRequestsMandatoryFieldsItemsOnly', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''item_only''', 'multiple'),
61
('ArticleRequestsMandatoryFieldsRecordOnly', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''bib_only''', 'multiple'),
61
('ArticleRequestsMandatoryFieldsRecordOnly', '', NULL, 'Comma delimited list of required fields for bibs where article requests rule = ''bib_only''', 'multiple'),
62
('ArticleRequestsSupportedFormats', 'PHOTOCOPY', 'PHOTOCOPY|SCAN', 'List supported formats between vertical bars', 'free'),
62
('AudioAlerts','0','','Enable circulation sounds during checkin and checkout in the staff interface.  Not supported by all web browsers yet.','YesNo'),
63
('AudioAlerts','0','','Enable circulation sounds during checkin and checkout in the staff interface.  Not supported by all web browsers yet.','YesNo'),
63
('AuthDisplayHierarchy','0','','Display authority hierarchies','YesNo'),
64
('AuthDisplayHierarchy','0','','Display authority hierarchies','YesNo'),
64
('AuthFailureLog','',NULL,'If enabled, log authentication failures','YesNo'),
65
('AuthFailureLog','',NULL,'If enabled, log authentication failures','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +5 lines)
Lines 1156-1161 Circulation: Link Here
1156
                pages: Pages
1156
                pages: Pages
1157
                chapters: Chapters
1157
                chapters: Chapters
1158
            -
1158
            -
1159
        -
1160
            - "The following article request formats are supported:"
1161
            - pref: ArticleRequestsSupportedFormats
1162
            - "(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.)"
1163
1159
    Return claims:
1164
    Return claims:
1160
        -
1165
        -
1161
            - When marking a checkout as "claims returned",
1166
            - When marking a checkout as "claims returned",
1162
- 

Return to bug 20472