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

(-)a/installer/data/mysql/atomicupdate/bug_24083_EditDueDates_syspref.perl (+6 lines)
Line 0 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
	$dbh->do( q| INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('EditDueDates', '0', 'If enabled, it is possible to modify due dates in a patron checkout list ', '', 'YesNo'); | );
4
	SetVersion( $DBversion );
5
	print "Upgrade to $DBversion done (Bug 24083 - Add EditDueDates syspref)\n";
6
}
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 189-194 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
189
('DumpTemplateVarsOpac',  '0', NULL ,  'If enabled, dump all Template Toolkit variable to a comment in the html source for the opac.',  'YesNo'),
189
('DumpTemplateVarsOpac',  '0', NULL ,  'If enabled, dump all Template Toolkit variable to a comment in the html source for the opac.',  'YesNo'),
190
('EasyAnalyticalRecords','0','','If on, display in the catalogue screens tools to easily setup analytical record relationships','YesNo'),
190
('EasyAnalyticalRecords','0','','If on, display in the catalogue screens tools to easily setup analytical record relationships','YesNo'),
191
('EdifactInvoiceImport', 'automatic', 'automatic|manual', "If on, don't auto-import EDI invoices, just keep them in the database with the status 'new'", 'Choice'),
191
('EdifactInvoiceImport', 'automatic', 'automatic|manual', "If on, don't auto-import EDI invoices, just keep them in the database with the status 'new'", 'Choice'),
192
('EditDueDates','0','','If on, it is possible to edit due dates within a patron checkouts list','YesNo'),
192
('ElasticsearchIndexStatus_authorities', '0', 'Authorities index status', NULL, NULL),
193
('ElasticsearchIndexStatus_authorities', '0', 'Authorities index status', NULL, NULL),
193
('ElasticsearchIndexStatus_biblios', '0', 'Biblios index status', NULL, NULL),
194
('ElasticsearchIndexStatus_biblios', '0', 'Biblios index status', NULL, NULL),
194
('ElasticsearchMARCFormat', 'ISO2709', 'ISO2709|ARRAY', 'Elasticsearch MARC format. ISO2709 format is recommended as it is faster and takes less space, whereas array is searchable.', 'Choice'),
195
('ElasticsearchMARCFormat', 'ISO2709', 'ISO2709|ARRAY', 'Elasticsearch MARC format. ISO2709 format is recommended as it is faster and takes less space, whereas array is searchable.', 'Choice'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 168-173 Circulation: Link Here
168
                  1: "Use"
168
                  1: "Use"
169
                  0: "Don't use"
169
                  0: "Don't use"
170
            - circulation desks with circulation.
170
            - circulation desks with circulation.
171
        -
172
            - pref: EditDueDates
173
              choices:
174
                  yes: Allow
175
                  no: "Don't allow"
176
            - editing of due dates in a patron checkouts list
171
177
172
    Checkout policy:
178
    Checkout policy:
173
        -
179
        -
174
- 

Return to bug 24608