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

(-)a/installer/data/mysql/atomicupdate/volumes.perl (+5 lines)
Lines 5-10 if ( CheckVersion( $DBversion ) ) { Link Here
5
        ('EnableVolumes','0','','Enable volumes feature','YesNo');
5
        ('EnableVolumes','0','','Enable volumes feature','YesNo');
6
    });
6
    });
7
7
8
    $dbh->do(q{
9
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
10
        ('EnableVolumeHolds','0','','Enable volume level holds feature','YesNo')
11
    });
12
8
    unless ( TableExists('volumes') ) {
13
    unless ( TableExists('volumes') ) {
9
        $dbh->do(q{
14
        $dbh->do(q{
10
            CREATE TABLE `volumes` ( -- information related to bibliographic records in Koha
15
            CREATE TABLE `volumes` ( -- information related to bibliographic records in Koha
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 676-681 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
676
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
676
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
677
('UseWYSIWYGinSystemPreferences','0','','Show WYSIWYG editor when editing certain HTML system preferences.','YesNo'),
677
('UseWYSIWYGinSystemPreferences','0','','Show WYSIWYG editor when editing certain HTML system preferences.','YesNo'),
678
('EnableVolumes','0','','Enable volumes feature','YesNo'),
678
('EnableVolumes','0','','Enable volumes feature','YesNo'),
679
('EnableVolumeHolds','0','','Enable volume level holds feature','YesNo'),
679
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
680
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
680
('viewLabeledMARC','0','','Allow display of labeled MARC view of bibiographic records','YesNo'),
681
('viewLabeledMARC','0','','Allow display of labeled MARC view of bibiographic records','YesNo'),
681
('viewMARC','1','','Allow display of MARC view of bibiographic records','YesNo'),
682
('viewMARC','1','','Allow display of MARC view of bibiographic records','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 581-586 Circulation: Link Here
581
                  yes: Enable
581
                  yes: Enable
582
                  no: "Don't enable"
582
                  no: "Don't enable"
583
            - volumes feature to allow collecting groups of items on a record into volumes.
583
            - volumes feature to allow collecting groups of items on a record into volumes.
584
        -
585
            - pref: EnableVolumeHolds
586
              choices:
587
                  yes: Enable
588
                  no: "Don't enable"
589
            - the ability to place holds on volumes.
584
        -
590
        -
585
            - In the staff client, split the holds queue into separate tables by
591
            - In the staff client, split the holds queue into separate tables by
586
            - pref: HoldsSplitQueue
592
            - pref: HoldsSplitQueue
587
- 

Return to bug 24860