https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19822
Katrin Fischer <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - low |P1 - high --- Comment #6 from Katrin Fischer <[email protected]> --- Can we identify the global settings from the conf-settings? My impression is that not even the mandatory ones are used by the backend, even tho they are required to allow access to the module: https://wiki.koha-community.org/wiki/ILL_backends 1 <interlibrary_loans> 2 <!-- Path to where Illbackends are located on the system 3 - This setting should normally not be touched --> 4 <backend_directory>__PERL_MODULE_DIR__/Koha/Illbackends</backend_directory> 5 <!-- How should we treat staff comments? 6 - hide: don't show in OPAC 7 - show: show in OPAC --> 8 <staff_request_comments>hide</staff_request_comments> 9 <!-- How should we treat the reply_date field? 10 - hide: don't show this field in the UI 11 - any other string: show, with this label --> 12 <reply_date>hide</reply_date> 13 <!-- Where should digital ILLs be sent? 14 - borrower: send it straight to the borrower email 15 - branch: send the ILL to the branch email --> 16 <digital_recipient>branch</digital_recipient> 17 <!-- What patron category should we use for p2p ILL requests? 18 - By default this is set to 'ILLLIBS' --> 19 <partner_code>ILLLIBS</partner_code> 20 <branch><code>code_for_your_branch</code></branch> 21 </interlibrary_loans> backend_directory: If we moved to plugins, this would probably be replaced by the plugin path. How will Koha recognize that it's an ILL type plugin? staff_request_comments: Could be a system preference reply_date: Could be a system preference digital_recipient: Could be a system preference, not sure how this is implemented in the ILL module partner_code: Could be moved to plugins but also be a system preference. It should be updated to be set to IL on ktd/dev environments to match sample data. branch: I am not sure how and if this is used at all, need to verify. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
