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 678-683 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
678
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
678
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
679
('UseWYSIWYGinSystemPreferences','0','','Show WYSIWYG editor when editing certain HTML system preferences.','YesNo'),
679
('UseWYSIWYGinSystemPreferences','0','','Show WYSIWYG editor when editing certain HTML system preferences.','YesNo'),
680
('EnableVolumes','0','','Enable volumes feature','YesNo'),
680
('EnableVolumes','0','','Enable volumes feature','YesNo'),
681
('EnableVolumeHolds','0','','Enable volume level holds feature','YesNo'),
681
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
682
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
682
('viewLabeledMARC','0','','Allow display of labeled MARC view of bibiographic records','YesNo'),
683
('viewLabeledMARC','0','','Allow display of labeled MARC view of bibiographic records','YesNo'),
683
('viewMARC','1','','Allow display of MARC view of bibiographic records','YesNo'),
684
('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 601-606 Circulation: Link Here
601
                  yes: Enable
601
                  yes: Enable
602
                  no: "Don't enable"
602
                  no: "Don't enable"
603
            - volumes feature to allow collecting groups of items on a record into volumes.
603
            - volumes feature to allow collecting groups of items on a record into volumes.
604
        -
605
            - pref: EnableVolumeHolds
606
              choices:
607
                  yes: Enable
608
                  no: "Don't enable"
609
            - the ability to place holds on volumes.
604
        -
610
        -
605
            - In the staff client, split the holds queue into separate tables by
611
            - In the staff client, split the holds queue into separate tables by
606
            - pref: HoldsSplitQueue
612
            - pref: HoldsSplitQueue
607
- 

Return to bug 24860