The Koha manual notes that "When you create a Book type request a brief catalog record is created automatically based on the Fast Add MARC framework." Some libraries that use Fast Add frameworks in their cataloging/circ workflows might like to use a different framework with specific ILL-preset values.
Hi, I believe there is a way to change the default framework of biblios that are created from 'book' ILL requests, even though it's not well known/documented: If you add <framework>CODE</framework> under <interlibrary_loans> in koha-conf.xml, it will use that instead, example (let's say the framework's code is 'ILL'): <interlibrary_loans> ... <framework>ILL</framework> </interlibrary_loans>
If that works, please don't close the bug as it should be added to the manual. Even better if we could move it to a system preference later.
This is all good to know for the libraries we support. Better still if it is in a place more librarians are empowered to make the change themselves :).
This should be backend-defined. i.e. something like `$framework = $req->_backend()->get_framework( $req );`
We have this setting for "our" backend, but I think a general setting in system preference that can be overwritten by backend configuration could also make sense.
(In reply to Katrin Fischer from comment #5) > We have this setting for "our" backend, but I think a general setting in > system preference that can be overwritten by backend configuration could > also make sense. Yes, having the ability to set it for the standard backend/as a fallback if not defined in another backend would be good.