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

(-)a/installer/data/mysql/atomicupdate/bug_15475.sql (+6 lines)
Line 0 Link Here
1
INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type )
2
    SELECT 'ExportCircHistory', COUNT(*), NULL, "Display the export circulation options",  'YesNo'
3
    FROM systempreferences
4
    WHERE ( variable = 'ExportRemoveFields' AND value != "" AND value IS NOT NULL )
5
        OR ( variable = 'ExportWithCsvProfile' AND value != "" AND value IS NOT NULL );
6
DELETE FROM systempreferences WHERE variable="ExportWithCsvProfile";
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 151-156 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
151
('ExpireReservesMaxPickUpDelay','0','','Enabling this allows holds to expire automatically if they have not been picked by within the time period specified in ReservesMaxPickUpDelay','YesNo'),
151
('ExpireReservesMaxPickUpDelay','0','','Enabling this allows holds to expire automatically if they have not been picked by within the time period specified in ReservesMaxPickUpDelay','YesNo'),
152
('ExpireReservesMaxPickUpDelayCharge','0',NULL,'If ExpireReservesMaxPickUpDelay is enabled, and this field has a non-zero value, than a borrower whose waiting hold has expired will be charged this amount.','free'),
152
('ExpireReservesMaxPickUpDelayCharge','0',NULL,'If ExpireReservesMaxPickUpDelay is enabled, and this field has a non-zero value, than a borrower whose waiting hold has expired will be charged this amount.','free'),
153
('ExpireReservesOnHolidays', '1', NULL, 'If false, reserves at a library will not be canceled on days the library is not open.', 'YesNo'),
153
('ExpireReservesOnHolidays', '1', NULL, 'If false, reserves at a library will not be canceled on days the library is not open.', 'YesNo'),
154
('ExportCircHistory', 0, NULL, "Display the export circulation options",  'YesNo' ),
154
('ExtendedPatronAttributes','0',NULL,'Use extended patron IDs and attributes','YesNo'),
155
('ExtendedPatronAttributes','0',NULL,'Use extended patron IDs and attributes','YesNo'),
155
('FacetLabelTruncationLength','20',NULL,'Specify the facet max length in OPAC','Integer'),
156
('FacetLabelTruncationLength','20',NULL,'Specify the facet max length in OPAC','Integer'),
156
('FacetMaxCount','20',NULL,'Specify the max facet count for each category','Integer'),
157
('FacetMaxCount','20',NULL,'Specify the max facet count for each category','Integer'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-4 / +5 lines)
Lines 117-125 Circulation: Link Here
117
                  no: "Do not"
117
                  no: "Do not"
118
            - update a bibliographic record's total issues count whenever an item is issued (WARNING! This increases server load significantly; if performance is a concern, use the update_totalissues.pl cron job to update the total issues count).
118
            - update a bibliographic record's total issues count whenever an item is issued (WARNING! This increases server load significantly; if performance is a concern, use the update_totalissues.pl cron job to update the total issues count).
119
        -
119
        -
120
            - Use the
120
            - pref: ExportCircHistory
121
            - pref: ExportWithCsvProfile
121
              choices:
122
            - CSV profile when exporting patron checkout history (enter CSV Profile name)
122
                  yes: Show
123
                  no: "Don't show"
124
            - the export patron checkout history options.
123
        -
125
        -
124
            - The following fields should be excluded from the patron checkout history CSV or iso2709 export
126
            - The following fields should be excluded from the patron checkout history CSV or iso2709 export
125
            - pref: ExportRemoveFields
127
            - pref: ExportRemoveFields
126
- 

Return to bug 15498