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

(-)a/api/v1/swagger/definitions/hold.yaml (-1 / +1 lines)
Lines 20-26 properties: Link Here
20
    type:
20
    type:
21
      - string
21
      - string
22
      - "null"
22
      - "null"
23
    description: Internal item_group identifier
23
    description: Internal item group identifier
24
  pickup_library_id:
24
  pickup_library_id:
25
    type:
25
    type:
26
      - string
26
      - string
(-)a/installer/data/mysql/atomicupdate/bug_24860.perl (-1 / +1 lines)
Lines 18-24 if ( CheckVersion( $DBversion ) ) { Link Here
18
18
19
    $dbh->do(q{
19
    $dbh->do(q{
20
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
20
        INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
21
        ('EnableItemGroupHolds','0','','Enable volume level holds feature','YesNo')
21
        ('EnableItemGroupHolds','0','','Enable item group holds feature','YesNo')
22
    });
22
    });
23
23
24
    SetVersion( $DBversion );
24
    SetVersion( $DBversion );
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 217-223 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
('EnableItemGroupHolds','0','','Enable item groups holds feature','YesNo'),
221
('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'),
222
('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'),
223
('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/js/holds.js (-2 / +1 lines)
Lines 279-285 $(document).ready(function() { Link Here
279
                            }
279
                            }
280
280
281
                            if ( oObj.item_group_id ) {
281
                            if ( oObj.item_group_id ) {
282
                                data += _("Next available item group <strong>%s</strong> item").format( oObj.item_group_description );
282
                                data += __("Next available item group <strong>%s</strong> item").format( oObj.item_group_description );
283
                            }
283
                            }
284
284
285
                            if ( oObj.barcode ) {
285
                            if ( oObj.barcode ) {
286
- 

Return to bug 24860