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

(-)a/installer/data/mysql/atomicupdate/volumes.perl (+5 lines)
Lines 10-15 if ( CheckVersion( $DBversion ) ) { Link Here
10
        ( 9, 'manage_volumes', 'Create, update and delete volumes, add or remove items from a volume');
10
        ( 9, 'manage_volumes', 'Create, update and delete volumes, add or remove items from a volume');
11
    });
11
    });
12
12
13
    $dbh->do(q{
14
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
15
        ('EnableVolumeHolds','0','','Enable volume level holds feature','YesNo')
16
    });
17
13
    unless ( TableExists('volumes') ) {
18
    unless ( TableExists('volumes') ) {
14
        $dbh->do(q{
19
        $dbh->do(q{
15
            CREATE TABLE `volumes` ( -- information related to bibliographic records in Koha
20
            CREATE TABLE `volumes` ( -- information related to bibliographic records in Koha
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 693-698 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
693
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
693
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
694
('UseWYSIWYGinSystemPreferences','0','','Show WYSIWYG editor when editing certain HTML system preferences.','YesNo'),
694
('UseWYSIWYGinSystemPreferences','0','','Show WYSIWYG editor when editing certain HTML system preferences.','YesNo'),
695
('EnableVolumes','0','','Enable volumes feature','YesNo'),
695
('EnableVolumes','0','','Enable volumes feature','YesNo'),
696
('EnableVolumeHolds','0','','Enable volume level holds feature','YesNo'),
696
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
697
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
697
('viewLabeledMARC','0','','Allow display of labeled MARC view of bibiographic records','YesNo'),
698
('viewLabeledMARC','0','','Allow display of labeled MARC view of bibiographic records','YesNo'),
698
('viewMARC','1','','Allow display of MARC view of bibiographic records','YesNo'),
699
('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 627-632 Circulation: Link Here
627
                  yes: Enable
627
                  yes: Enable
628
                  no: "Don't enable"
628
                  no: "Don't enable"
629
            - volumes feature to allow collecting groups of items on a record into volumes.
629
            - volumes feature to allow collecting groups of items on a record into volumes.
630
        -
631
            - pref: EnableVolumeHolds
632
              choices:
633
                  yes: Enable
634
                  no: "Don't enable"
635
            - the ability to place holds on volumes.
630
        -
636
        -
631
            - In the staff client, split the holds queue into separate tables by
637
            - In the staff client, split the holds queue into separate tables by
632
            - pref: HoldsSplitQueue
638
            - pref: HoldsSplitQueue
633
- 

Return to bug 24860