Hello; I have imported items using bulkmarcimport.pl and most seem to work fine. My reference materials say they are available but when I try to issue one I get : Error Issuing Item: Item not for loan The itemtype is REF and description is Reference. I have filled out all the fields in the Issuing Rules, changed and resaved them a number of times. Am I missing something somewhere that would block the issuing of these items? I have looked at the field for "use restrictions" (field y in "Items") and that is set to 0. Here is the error I get from the error log: HERE : 0 / (3 for 1 at /usr/local/koha/intranet/modules/C4/Circulation/Circ2.pm line 650., referer: http://library.lyncs.org:8010/cgi-bin/koha/circ/circulation.pl I was getting a fetchrow() error but I enabled large tables in mySQL and that seemd to go away. So, any Ideas? Thanks for your help Paul Davis Lynden Christian Schools -- View this message in context: http://www.nabble.com/Item-not-for-loan-problem-tf4351355.html#a12398715 Sent from the Koha - Discuss mailing list archive at Nabble.com.
Hi Paul The 'REF' itemtype is hardcoded as not for loan. This can be remedied by editing the Circ2.pm perl module. In the installation source tree, find intranet/modules/C4/Circulation/Circ2.pm around line 750, comment out this block of code: 750 : if ($iteminformation->{'itemtype'} eq 'REF') { 751 : $issuingimpossible{NOT_FOR_LOAN} = 1; 752 : } by adding '#' at the start of each line. This is an artifact from earlier Koha versions, and will be removed in upcoming releases. Hope that helps Ryan Higgins ----LibLime---------------------------------- Providing Open-Source Solutions for Libraries Migration, Training, Maintenance and Support Featuring Koha ILS : http://liblime.com/koha --------------------------------------------- ----- "Pauley" <pdavis@lyncs.org> wrote: | Hello; | | I have imported items using bulkmarcimport.pl and most seem to work | fine. | My reference materials say they are available but when I try to issue | one I | get : | | Error Issuing Item: | Item not for loan | | The itemtype is REF and description is Reference. I have filled out | all the | fields in the Issuing Rules, changed and resaved them a number of | times. Am | I missing something somewhere that would block the issuing of these | items? | I have looked at the field for "use restrictions" (field y in "Items") | and | that is set to 0. Here is the error I get from the error log: | | HERE : 0 / (3 for 1 at | /usr/local/koha/intranet/modules/C4/Circulation/Circ2.pm line 650., | referer: | http://library.lyncs.org:8010/cgi-bin/koha/circ/circulation.pl | | I was getting a fetchrow() error but I enabled large tables in mySQL | and | that seemd to go away. | | So, any Ideas? | | Thanks for your help | | Paul Davis | Lynden Christian Schools | -- | View this message in context: | http://www.nabble.com/Item-not-for-loan-problem-tf4351355.html#a12398715 | Sent from the Koha - Discuss mailing list archive at Nabble.com. | | _______________________________________________ | Koha mailing list | Koha@lists.katipo.co.nz | http://lists.katipo.co.nz/mailman/listinfo/koha
participants (2)
-
Pauley -
Ryan Higgins