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 215-220 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
215
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
215
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
216
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
216
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
217
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
217
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
218
('EnableItemGroupHolds','0','','Enable volume level holds feature','YesNo'),
218
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
219
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
219
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
220
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
220
('expandedSearchOption','0',NULL,'If ON, set advanced search to be expanded by default','YesNo'),
221
('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 661-666 Circulation: Link Here
661
                  yes: Enable
661
                  yes: Enable
662
                  no: "Don't enable"
662
                  no: "Don't enable"
663
            - the item groups feature to allow collecting groups of items on a record together.
663
            - the item groups feature to allow collecting groups of items on a record together.
664
        -
665
            - pref: EnableItemGroupHolds
666
              choices:
667
                  yes: Enable
668
                  no: "Don't enable"
669
            - the ability to place holds on item groups.
664
        -
670
        -
665
            - In the staff client, split the holds queue into separate tables by
671
            - In the staff client, split the holds queue into separate tables by
666
            - pref: HoldsSplitQueue
672
            - pref: HoldsSplitQueue
667
- 

Return to bug 24860