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 211-216 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
211
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
211
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
212
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
212
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
213
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
213
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
214
('EnableItemGroupHolds','0','','Enable volume level holds feature','YesNo'),
214
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
215
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
215
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
216
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
216
('expandedSearchOption','0',NULL,'If ON, set advanced search to be expanded by default','YesNo'),
217
('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 680-685 Circulation: Link Here
680
                  yes: Enable
680
                  yes: Enable
681
                  no: "Don't enable"
681
                  no: "Don't enable"
682
            - the item groups feature to allow collecting groups of items on a record together.
682
            - the item groups feature to allow collecting groups of items on a record together.
683
        -
684
            - pref: EnableItemGroupHolds
685
              choices:
686
                  yes: Enable
687
                  no: "Don't enable"
688
            - the ability to place holds on item groups.
683
        -
689
        -
684
            - In the staff client, split the holds queue into separate tables by
690
            - In the staff client, split the holds queue into separate tables by
685
            - pref: HoldsSplitQueue
691
            - pref: HoldsSplitQueue
686
- 

Return to bug 24860