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/mandatory/sysprefs.sql (+1 lines)
Lines 186-191 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
186
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
186
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
187
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
187
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
188
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
188
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
189
('EnableVolumeHolds','0','','Enable volume level holds feature','YesNo'),
189
('EnableVolumes','0','','Enable volumes feature','YesNo'),
190
('EnableVolumes','0','','Enable volumes feature','YesNo'),
190
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
191
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
191
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
192
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 663-668 Circulation: Link Here
663
                  yes: Enable
663
                  yes: Enable
664
                  no: "Don't enable"
664
                  no: "Don't enable"
665
            - volumes feature to allow collecting groups of items on a record into volumes.
665
            - volumes feature to allow collecting groups of items on a record into volumes.
666
        -
667
            - pref: EnableVolumeHolds
668
              choices:
669
                  yes: Enable
670
                  no: "Don't enable"
671
            - the ability to place holds on volumes.
666
        -
672
        -
667
            - In the staff client, split the holds queue into separate tables by
673
            - In the staff client, split the holds queue into separate tables by
668
            - pref: HoldsSplitQueue
674
            - pref: HoldsSplitQueue
669
- 

Return to bug 24860