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 1172-1177 Circulation: Link Here
1172
                pages: Pages
1172
                pages: Pages
1173
                chapters: Chapters
1173
                chapters: Chapters
1174
            -
1174
            -
1175
        -
1176
            - "The following article request formats are supported:"
1177
            - pref: ArticleRequestsSupportedFormats
1178
            - "(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.)"
1179
1175
    Return claims:
1180
    Return claims:
1176
        -
1181
        -
1177
            - When marking a checkout as "claims returned",
1182
            - When marking a checkout as "claims returned",
1178
- 

Return to bug 20472