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

(-)a/installer/data/mysql/atomicupdate/bug_22653_remove_RotationPreventTransfers.perl (+6 lines)
Line 0 Link Here
1
$DBversion = 'XXX';
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do( "DELETE FROM systempreferences WHERE variable = 'RotationPreventTransfers'" );
4
    SetVersion( $DBversion );
5
    print "Upgrade to $DBversion done (Bug 22653 - Remove unimplemented RotationPreventTransfers system preference)\n";
6
}
(-)a/installer/data/mysql/sysprefs.sql (-1 lines)
Lines 521-527 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
521
('reviewson','1','','If ON, enables patron reviews of bibliographic records in the OPAC','YesNo'),
521
('reviewson','1','','If ON, enables patron reviews of bibliographic records in the OPAC','YesNo'),
522
('RisExportAdditionalFields',  '', NULL ,  'Define additional RIS tags to export from MARC records in YAML format as an associative array with either a marc tag/subfield combination as the value, or a list of tag/subfield combinations.',  'textarea'),
522
('RisExportAdditionalFields',  '', NULL ,  'Define additional RIS tags to export from MARC records in YAML format as an associative array with either a marc tag/subfield combination as the value, or a list of tag/subfield combinations.',  'textarea'),
523
('RoutingListAddReserves','0','','If ON the patrons on routing lists are automatically added to holds on the issue.','YesNo'),
523
('RoutingListAddReserves','0','','If ON the patrons on routing lists are automatically added to holds on the issue.','YesNo'),
524
('RotationPreventTransfers','0',NULL,'If ON, prevent any transfers for items on stock rotation rotas, except for stock rotation transfers','YesNo'),
525
('RoutingListNote','To change this note edit <a href=\"/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RoutingListNote#jumped\">RoutingListNote</a> system preference.','70|10','Define a note to be shown on all routing lists','Textarea'),
524
('RoutingListNote','To change this note edit <a href=\"/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RoutingListNote#jumped\">RoutingListNote</a> system preference.','70|10','Define a note to be shown on all routing lists','Textarea'),
526
('RoutingSerials','1',NULL,'If ON, serials routing is enabled','YesNo'),
525
('RoutingSerials','1',NULL,'If ON, serials routing is enabled','YesNo'),
527
('SCOMainUserBlock','','70|10','Add a block of HTML that will display on the self checkout screen','Textarea'),
526
('SCOMainUserBlock','','70|10','Add a block of HTML that will display on the self checkout screen','Textarea'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-7 lines)
Lines 1024-1035 Circulation: Link Here
1024
                  yes: Enable
1024
                  yes: Enable
1025
                  no: Disable
1025
                  no: Disable
1026
            - "the stock rotation module"
1026
            - "the stock rotation module"
1027
        -
1028
            - pref: RotationPreventTransfers
1029
              choices:
1030
                  yes: Disallow
1031
                  no: Allow
1032
            - "library transfers on items in stockrotation rotas"
1033
    Article Requests:
1027
    Article Requests:
1034
        -
1028
        -
1035
            - pref: ArticleRequests
1029
            - pref: ArticleRequests
1036
- 

Return to bug 22653