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 217-222 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
217
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
217
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
218
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
218
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
219
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
219
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
220
('EnableItemGroupHolds','0','','Enable volume level holds feature','YesNo'),
220
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
221
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
221
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
222
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
222
('expandedSearchOption','0',NULL,'If ON, set advanced search to be expanded by default','YesNo'),
223
('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 679-684 Circulation: Link Here
679
                  itemtype: "hold item type"
679
                  itemtype: "hold item type"
680
                  branch_itemtype: "pickup library and item type"
680
                  branch_itemtype: "pickup library and item type"
681
            - "."
681
            - "."
682
        -
683
            - pref: EnableItemGroupHolds
684
              choices:
685
                  yes: Enable
686
                  no: "Don't enable"
687
            - the ability to place holds on item groups.
682
        -
688
        -
683
            - If the holds queue is split, show librarians
689
            - If the holds queue is split, show librarians
684
            - pref: HoldsSplitQueueNumbering
690
            - pref: HoldsSplitQueueNumbering
685
- 

Return to bug 24860