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

(-)a/installer/data/mysql/atomicupdate/bug_25552.perl (+8 lines)
Line 0 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{
4
        UPDATE systempreferences SET options = "claim_returned|batchmod|moredetail|cronjob|additem|pendingreserves|onpayment" WHERE variable = "MarkLostItemsAsReturned";
5
    });
6
    # Always end with this (adjust the bug info)
7
    NewVersion( $DBversion, 25552, "Add missing Claims Returned option to MarkLostItemsAsReturned");
8
}
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 319-325 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
319
('MarcFieldForModifierName','',NULL,'Where to store the name of the record''s last modifier','Free'),
319
('MarcFieldForModifierName','',NULL,'Where to store the name of the record''s last modifier','Free'),
320
('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'),
320
('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'),
321
('MarcItemFieldsToOrder','',NULL,'Set the mapping values for new item records created from a MARC record in a staged file. In a YAML format.','textarea'),
321
('MarcItemFieldsToOrder','',NULL,'Set the mapping values for new item records created from a MARC record in a staged file. In a YAML format.','textarea'),
322
('MarkLostItemsAsReturned','batchmod,moredetail,cronjob,additem,pendingreserves,onpayment','batchmod|moredetail|cronjob|additem|pendingreserves|onpayment','Mark items as returned when flagged as lost','multiple'),
322
('MarkLostItemsAsReturned','batchmod,moredetail,cronjob,additem,pendingreserves,onpayment','claim_returned|batchmod|moredetail|cronjob|additem|pendingreserves|onpayment','Mark items as returned when flagged as lost','multiple'),
323
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
323
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
324
('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'),
324
('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'),
325
('MaxItemsToDisplayForBatchDel','1000',NULL,'Display up to a given number of items in a single item deletionbatch.','Integer'),
325
('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 / +1 lines)
Lines 468-473 Circulation: Link Here
468
                moredetail: "from the items tab of the catalog module"
468
                moredetail: "from the items tab of the catalog module"
469
                pendingreserves: "from the 'Holds to pull' list"
469
                pendingreserves: "from the 'Holds to pull' list"
470
                onpayment: "when receiving payment for the item"
470
                onpayment: "when receiving payment for the item"
471
                claim_returned: "when marking an item as a return claim"
471
            - .
472
            - .
472
        -
473
        -
473
            - pref: AllowMultipleIssuesOnABiblio
474
            - pref: AllowMultipleIssuesOnABiblio
474
- 

Return to bug 25552