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 111-116 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
111
('ConfirmFutureHolds','0','','Number of days for confirming future holds','Integer'),
111
('ConfirmFutureHolds','0','','Number of days for confirming future holds','Integer'),
112
('ConsiderOnSiteCheckoutsAsNormalCheckouts','1',NULL,'Consider on-site checkouts as normal checkouts','YesNo'),
112
('ConsiderOnSiteCheckoutsAsNormalCheckouts','1',NULL,'Consider on-site checkouts as normal checkouts','YesNo'),
113
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
113
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
114
('CumulativeRestrictionPeriods',0,NULL,'Cumulate the restriction periods instead of keeping the highest','YesNo'),
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'),
115
('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'),
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'),
116
('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'),
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'),
117
('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 465-470 Circulation: Link Here
465
            - 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
465
            - 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
466
            - "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."
466
            - "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."
467
            - Each pair of values should be on a separate line.
467
            - Each pair of values should be on a separate line.
468
        -
469
            - pref: CumulativeRestrictionPeriods
470
              choices:
471
                  yes: Cumulate
472
                  no: "Don't cumulate"
473
            - the restriction periods.
468
    Holds Policy:
474
    Holds Policy:
469
        -
475
        -
470
            - pref: AllowHoldItemTypeSelection
476
            - pref: AllowHoldItemTypeSelection
471
- 

Return to bug 14146