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

(-)a/installer/data/mysql/atomicupdate/bug_19287.sql (+1 lines)
Line 0 Link Here
1
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('CanMarkHoldsAwaitingPickupAsLost','no','no|yes|yes_and_notify','Add a button on the "Holds awaiting pickup" screen to mark an item as lost and notify the patron.','Choice');
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 255-260 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
255
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,'Define the contents of MARC21 authority control field 008 position 06-39','Textarea'),
255
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,'Define the contents of MARC21 authority control field 008 position 06-39','Textarea'),
256
('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'),
256
('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'),
257
('MarcItemFieldsToOrder','',NULL,'Set the mapping values for new item records created from a MARC record in a staged file. In a YAML format.','textarea'),
257
('MarcItemFieldsToOrder','',NULL,'Set the mapping values for new item records created from a MARC record in a staged file. In a YAML format.','textarea'),
258
('CanMarkHoldsAwaitingPickupAsLost','no','no|yes|yes_and_notify','Add a button on the "Holds awaiting pickup" screen to mark an item as lost and notify the patron.','Choice'),
258
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
259
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
259
('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'),
260
('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'),
260
('MaxItemsToDisplayForBatchDel','1000',NULL,'Display up to a given number of items in a single item deletionbatch.','Integer'),
261
('MaxItemsToDisplayForBatchDel','1000',NULL,'Display up to a given number of items in a single item deletionbatch.','Integer'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +7 lines)
Lines 690-695 Circulation: Link Here
690
            - "Patron categories not affected by OPACHoldsIfAvailableAtPickup"
690
            - "Patron categories not affected by OPACHoldsIfAvailableAtPickup"
691
            - pref: OPACHoldsIfAvailableAtPickupExceptions
691
            - pref: OPACHoldsIfAvailableAtPickupExceptions
692
            - "(list of patron categories separated with a pipe '|')"
692
            - "(list of patron categories separated with a pipe '|')"
693
        -
694
            - pref: CanMarkHoldsAwaitingPickupAsLost
695
              choices:
696
                  no: "Do not allow to mark items as lost"
697
                  yes: "Allow to mark items as lost"
698
                  yes_and_notify: "Allow to mark items as lost and notify the patron"
699
            - "from the 'Holds awaiting pickup' screen"
693
    Fines Policy:
700
    Fines Policy:
694
        -
701
        -
695
            - Calculate fines based on days overdue
702
            - Calculate fines based on days overdue
696
- 

Return to bug 19287