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

(-)a/installer/data/mysql/atomicupdate/bug_24860.perl (+5 lines)
Lines 16-21 if ( CheckVersion( $DBversion ) ) { Link Here
16
        });
16
        });
17
    }
17
    }
18
18
19
    $dbh->do(q{
20
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
21
        ('EnableItemGroupHolds','0','','Enable volume level holds feature','YesNo')
22
    });
23
19
    SetVersion( $DBversion );
24
    SetVersion( $DBversion );
20
    print "Upgrade to $DBversion done (Bug 24860 - Add ability to place item group level holds)\n";
25
    print "Upgrade to $DBversion done (Bug 24860 - Add ability to place item group level holds)\n";
21
}
26
}
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 207-212 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
207
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
207
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
208
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
208
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
209
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
209
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
210
('EnableItemGroupHolds','0','','Enable volume level holds feature','YesNo'),
210
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
211
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
211
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
212
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
212
('expandedSearchOption','0',NULL,'If ON, set advanced search to be expanded by default','YesNo'),
213
('expandedSearchOption','0',NULL,'If ON, set advanced search to be expanded by default','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 671-676 Circulation: Link Here
671
                  yes: Enable
671
                  yes: Enable
672
                  no: "Don't enable"
672
                  no: "Don't enable"
673
            - the item groups feature to allow collecting groups of items on a record together.
673
            - the item groups feature to allow collecting groups of items on a record together.
674
        -
675
            - pref: EnableItemGroupHolds
676
              choices:
677
                  yes: Enable
678
                  no: "Don't enable"
679
            - the ability to place holds on item groups.
674
        -
680
        -
675
            - In the staff client, split the holds queue into separate tables by
681
            - In the staff client, split the holds queue into separate tables by
676
            - pref: HoldsSplitQueue
682
            - pref: HoldsSplitQueue
677
- 

Return to bug 24860