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

(-)a/installer/data/mysql/atomicupdate/bug_11490.sql (+5 lines)
Line 0 Link Here
1
INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type )
2
SELECT 'MaxItemsToProcessForBatchMod', value, NULL, 'Process up to a given number of items in a single item modification batch.', 'Integer' FROM systempreferences WHERE variable='MaxItemsForBatch';
3
INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type )
4
SELECT 'MaxItemsToDisplayForBatchDel', value, NULL, 'Display up to a given number of items in a single item deletionbatch.', 'Integer' FROM systempreferences WHERE variable='MaxItemsForBatch';
5
DELETE FROM systempreferences WHERE variable="MaxItemsForBatch";
(-)a/installer/data/mysql/sysprefs.sql (-1 / +2 lines)
Lines 231-237 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
231
('MarcFieldsToOrder','',NULL,'Set the mapping values for a new order line created from a MARC record in a staged file. In a YAML format.','textarea'),
231
('MarcFieldsToOrder','',NULL,'Set the mapping values for a new order line created from a MARC record in a staged file. In a YAML format.','textarea'),
232
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
232
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
233
('MaxFine',NULL,'','Maximum fine a patron can have for all late returns at one moment. Single item caps are specified in the circulation rules matrix.','Integer'),
233
('MaxFine',NULL,'','Maximum fine a patron can have for all late returns at one moment. Single item caps are specified in the circulation rules matrix.','Integer'),
234
('MaxItemsForBatch','1000',NULL,'Max number of items record to process in a batch (modification or deletion)','Integer'),
234
('MaxItemsToDisplayForBatchDel','1000',NULL,'Display up to a given number of items in a single item deletionbatch.','Integer'),
235
('MaxItemsToProcessForBatchMod','1000',NULL,'Process up to a given number of items in a single item modification batch.','Integer'),
235
('maxItemsInSearchResults','20',NULL,'Specify the maximum number of items to display for each result on a page of results','free'),
236
('maxItemsInSearchResults','20',NULL,'Specify the maximum number of items to display for each result on a page of results','free'),
236
('maxoutstanding','5','','maximum amount withstanding to be able make holds','Integer'),
237
('maxoutstanding','5','','maximum amount withstanding to be able make holds','Integer'),
237
('maxRecordsForFacets','20',NULL,NULL,'Integer'),
238
('maxRecordsForFacets','20',NULL,NULL,'Integer'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/tools.pref (-4 / +8 lines)
Lines 1-10 Link Here
1
Tools:
1
Tools:
2
    Batch item modification:
2
    Batch item:
3
        -
3
        -
4
            - Process up to
4
            - Process up to
5
            - pref: MaxItemsForBatch
5
            - pref: MaxItemsToProcessForBatchMod
6
              class: integer
6
              class: integer
7
            - items in a single modification or deletion batch.
7
            - items in a single item modification batch.
8
        -
9
            - Display up to
10
            - pref: MaxItemsToDisplayForBatchDel
11
              class: integer
12
            - items in a single item deletion batch.
8
    Patron cards:
13
    Patron cards:
9
        -
14
        -
10
            - Limit the number of creator images stored in the database to
15
            - Limit the number of creator images stored in the database to
11
- 

Return to bug 11490