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 184-189 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
184
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
184
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
185
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
185
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
186
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
186
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
187
('EnableVolumeHolds','0','','Enable volume level holds feature','YesNo'),
187
('EnableVolumes','0','','Enable volumes feature','YesNo'),
188
('EnableVolumes','0','','Enable volumes feature','YesNo'),
188
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
189
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
189
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
190
('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 633-638 Circulation: Link Here
633
                  yes: Enable
633
                  yes: Enable
634
                  no: "Don't enable"
634
                  no: "Don't enable"
635
            - volumes feature to allow collecting groups of items on a record into volumes.
635
            - volumes feature to allow collecting groups of items on a record into volumes.
636
        -
637
            - pref: EnableVolumeHolds
638
              choices:
639
                  yes: Enable
640
                  no: "Don't enable"
641
            - the ability to place holds on volumes.
636
        -
642
        -
637
            - In the staff client, split the holds queue into separate tables by
643
            - In the staff client, split the holds queue into separate tables by
638
            - pref: HoldsSplitQueue
644
            - pref: HoldsSplitQueue
639
- 

Return to bug 24860