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

(-)a/installer/data/mysql/atomicupdate/bug_14146.sql (+2 lines)
Line 0 Link Here
1
INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
2
VALUES ('CumulativeRestrictionPeriods',  0,  NULL,  'Cumulate the restriction periods instead of keeping the highest',  'YesNo');
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 110-115 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
110
('ConfirmFutureHolds','0','','Number of days for confirming future holds','Integer'),
110
('ConfirmFutureHolds','0','','Number of days for confirming future holds','Integer'),
111
('ConsiderOnSiteCheckoutsAsNormalCheckouts','1',NULL,'Consider on-site checkouts as normal checkouts','YesNo'),
111
('ConsiderOnSiteCheckoutsAsNormalCheckouts','1',NULL,'Consider on-site checkouts as normal checkouts','YesNo'),
112
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
112
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
113
('CumulativeRestrictionPeriods',0,NULL,'Cumulate the restriction periods instead of keeping the highest','YesNo'),
113
('CurrencyFormat','US','US|FR|CH','Determines the display format of currencies. eg: \'36000\' is displayed as \'360 000,00\'  in \'FR\' or \'360,000.00\'  in \'US\'.','Choice'),
114
('CurrencyFormat','US','US|FR|CH','Determines the display format of currencies. eg: \'36000\' is displayed as \'360 000,00\'  in \'FR\' or \'360,000.00\'  in \'US\'.','Choice'),
114
('dateformat','us','metric|us|iso|dmydot','Define global date format (us mm/dd/yyyy, metric dd/mm/yyy, ISO yyyy-mm-dd, dmydot dd.mm.yyyy)','Choice'),
115
('dateformat','us','metric|us|iso|dmydot','Define global date format (us mm/dd/yyyy, metric dd/mm/yyy, ISO yyyy-mm-dd, dmydot dd.mm.yyyy)','Choice'),
115
('DebugLevel','2','0|1|2','Define the level of debugging information sent to the browser when errors are encountered (set to 0 in production). 0=none, 1=some, 2=most','Choice'),
116
('DebugLevel','2','0|1|2','Define the level of debugging information sent to the browser when errors are encountered (set to 0 in production). 0=none, 1=some, 2=most','Choice'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 459-464 Circulation: Link Here
459
            - This is a list of value pairs. When an item is checked in, if the not for loan value on the left matches the items not for loan value
459
            - This is a list of value pairs. When an item is checked in, if the not for loan value on the left matches the items not for loan value
460
            - "it will be updated to the right-hand value. E.g. '-1: 0' will cause an item that was set to 'Ordered' to now be available for loan."
460
            - "it will be updated to the right-hand value. E.g. '-1: 0' will cause an item that was set to 'Ordered' to now be available for loan."
461
            - Each pair of values should be on a separate line.
461
            - Each pair of values should be on a separate line.
462
        -
463
            - pref: CumulativeRestrictionPeriods
464
              choices:
465
                  yes: Cumulate
466
                  no: "Don't cumulate"
467
            - the restriction periods.
462
    Holds Policy:
468
    Holds Policy:
463
        -
469
        -
464
            - pref: AllowHoldItemTypeSelection
470
            - pref: AllowHoldItemTypeSelection
465
- 

Return to bug 14146