@@ -, +, @@ file. Add `ILLModuleUnmediated` handling. --- installer/data/mysql/atomicupdate/illunmediated_tables.sql | 4 ++++ installer/data/mysql/sysprefs.sql | 1 + .../prog/en/modules/admin/preferences/circulation.pref | 7 +++++++ 3 files changed, 12 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/illunmediated_tables.sql --- a/installer/data/mysql/atomicupdate/illunmediated_tables.sql +++ a/installer/data/mysql/atomicupdate/illunmediated_tables.sql @@ -0,0 +1,4 @@ +-- System preferences + +INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES + ('ILLModuleUnmediated','0','','If enabled, try to immediately progress newly placed ILL requests.','YesNo'); --- a/installer/data/mysql/sysprefs.sql +++ a/installer/data/mysql/sysprefs.sql @@ -210,6 +210,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('IdRef','0','','Disable/enable the IdRef webservice from the OPAC detail page.','YesNo'), ('ILLModule','0','If ON, enables the interlibrary loans module.','','YesNo'), ('ILLModuleCopyrightClearance','','70|10','Enter text to enable the copyright clearance stage of request creation. Text will be displayed','Textarea'), +('ILLModuleUnmediated','0','','If enabled, try to immediately progress newly placed ILL requests.','YesNo'), ('ILS-DI','0','','Enables ILS-DI services at OPAC.','YesNo'), ('ILS-DI:AuthorizedIPs','','Restricts usage of ILS-DI to some IPs','.','Free'), ('ImageLimit','5','','Limit images stored in the database by the Patron Card image manager to this number.','Integer'), --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref @@ -771,6 +771,13 @@ Circulation: - pref: ILLModuleCopyrightClearance type: textarea class: long + - + - Allow unmediated Interlibrary loan requests + - pref: ILLModuleUnmediated + default: 0 + choices: + yes: Enable + no: Disable Fines Policy: - - Calculate fines based on days overdue --