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

(-)a/installer/data/mysql/atomicupdate/bug_6796_-_add_ConsiderLibraryHoursWhenIssuing_syspref.perl (+5 lines)
Line 0 Link Here
1
$DBversion = 'XXX';
2
if ( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{ INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type ) VALUES ( 'ConsiderLibraryHoursWhenIssuing', 'ignore', 'close|open|ignore', "Take library opening hours into consideration to calculate due date when issuing.", 'Choice' ) });
4
    NewVersion( $DBversion, 6796, "Add ConsiderLibraryHoursWhenIssuing system preference" );
5
}
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 154-159 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
154
('ComponentSortField','title','call_number|pubdate|acqdate|title|author','Specify the default field used for sorting','Choice'),
154
('ComponentSortField','title','call_number|pubdate|acqdate|title|author','Specify the default field used for sorting','Choice'),
155
('ComponentSortOrder','asc','asc|dsc|az|za','Specify the default sort order','Choice'),
155
('ComponentSortOrder','asc','asc|dsc|az|za','Specify the default sort order','Choice'),
156
('ConfirmFutureHolds','0','','Number of days for confirming future holds','Integer'),
156
('ConfirmFutureHolds','0','','Number of days for confirming future holds','Integer'),
157
('ConsiderLibraryHoursWhenIssuing', 'close', 'close|open|ignore', "Take library opening hours into consideration to calculate due date when issuing.", 'Choice'),
157
('ConsiderOnSiteCheckoutsAsNormalCheckouts','1',NULL,'Consider on-site checkouts as normal checkouts','YesNo'),
158
('ConsiderOnSiteCheckoutsAsNormalCheckouts','1',NULL,'Consider on-site checkouts as normal checkouts','YesNo'),
158
('CreateAVFromCataloguing', '1', '', 'Ability to create authorized values from the cataloguing module', 'YesNo'),
159
('CreateAVFromCataloguing', '1', '', 'Ability to create authorized values from the cataloguing module', 'YesNo'),
159
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
160
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +7 lines)
Lines 561-566 Circulation: Link Here
561
            - "<br />ccode: [NEWFIC,NULL,DVD]"
561
            - "<br />ccode: [NEWFIC,NULL,DVD]"
562
            - "<br />itype: [NEWBK,\"\"]"
562
            - "<br />itype: [NEWBK,\"\"]"
563
            - "<br /> <strong>NOTE:</strong> The word 'NULL' can be used to block renewal on undefined fields, while an empty string \"\" will block on an empty (but defined) field."
563
            - "<br /> <strong>NOTE:</strong> The word 'NULL' can be used to block renewal on undefined fields, while an empty string \"\" will block on an empty (but defined) field."
564
        -
565
            - When checking out an hourly loan that will be due after the library closes,
566
            - pref: ConsiderLibraryHoursWhenIssuing
567
              choices:
568
                  open: "extend the loan period and set the checkout to be due at the library's open time."
569
                  close: "shorten the loan period and set the checkout to be due at the library's close time."
570
                  ignore: "do not consider the library's opening hours."
564
    Checkin policy:
571
    Checkin policy:
565
        -
572
        -
566
            - pref: TrapHoldsOnOrder
573
            - pref: TrapHoldsOnOrder
567
- 

Return to bug 6796