Eliminating "Reserve Fee Charge of $1.00" Notice to Borrower
I have an additional question for the list: How does one eliminate this message to the borrower when they place a reserve? We don't charge and I can't seem to find where or how to eliminate this phrase. Searched all of Koha's files for it--to no avail Note there will be a reserve charge of $1.00 Thanks in Advance! Michael Chartrand Library Technician Samaritan Medical Center Library 830 Washington Street Watertown, NY 13601 315-785-4191 FAX 315-779-5173 email: mchartrand@shsny.com
Chartrand, Michael wrote:
I have an additional question for the list:
How does one eliminate this message to the borrower when they place a reserve? We don't charge and I can't seem to find where or how to eliminate this phrase. Searched all of Koha's files for it--to no avail
*Note there will be a reserve charge of $1.00* I've encountered this problem as well, but nobody on the list seems to know how to fix it. This mailing list seems to be lacking in people who know about the internals of Koha. I've had lots of help on library topics (the complexities of MARC for example) but very little on anything that involves Koha's innards.
Is there another list that's more appropriate for this kind of question? For example, I'm sure the developers can answer but cross-posting to the developers' list is likely to be very annoying for them. Kevin -- Kevin O'Rourke ICT Coordinator, National Teachers' Institute, Kaduna, Nigeria 062 316972
On 16/05/2007, at 7:49 PM, Kevin O'Rourke wrote:
I have an additional question for the list:
How does one eliminate this message to the borrower when they place a reserve? We don't charge and I can't seem to find where or how to eliminate this phrase. Searched all of Koha's files for it--to no avail
Note there will be a reserve charge of $1.00 I've encountered this problem as well, but nobody on the list seems to know how to fix it. This mailing list seems to be lacking in
Chartrand, Michael wrote: people who know about the internals of Koha. I've had lots of help on library topics (the complexities of MARC for example) but very little on anything that involves Koha's innards.
Hi all There are quite a few of us who know the innards on the list, unfortunately most of us dont have the time available to answer questions, so we answer them when we can. One place to catch the developers is on irc, or filing a bug in bugs.koha.org The problem is in opac-reserve.pl line 203 $fee = 1; You can make that $fee = 0; That will turn it off, it'll be fixed to use a system preference, or the CalcReserveFee subroutine for the next release. Chris -- Chris Cormack chris.cormack@liblime.com VP Research and Development www.liblime.com LibLime +64 21 542 131
There are quite a few of us who know the innards on the list, unfortunately most of us dont have the time available to answer questions, so we answer them when we can.
One place to catch the developers is on irc, or filing a bug in bugs.koha.org I'm a little bit reluctant to file bugs, in case it's not really a bug. I know the developers are busy both with Koha and often with their
Chris Cormack wrote: paying jobs, so I don't want to waste their time.
The problem is in opac-reserve.pl line 203
Thanks for the fix. Kevin -- Kevin O'Rourke ICT Coordinator, National Teachers' Institute, Kaduna, Nigeria 062 316972
If you're using the npl templates, you'll also want to edit the template opac/htdocs/opac-tmpl/npl/en/opac-reserve.tmpl around line 96, you'll find: ........... <!-- /TMPL_IF --> <tr><th>Pick up From: </th><td><!-- TMPL_VAR NAME="branchname" --><input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->"></td></tr> </table> <!-- TMPL_IF NAME="fee" --> <p>Note there will be a reserve charge of <strong>$<!-- TMPL_VAR NAME="fee" --></strong></p> <!-- /TMPL_IF --> </div> ........... Replace the line: <!-- TMPL_IF NAME="fee" --> with: <!-- TMPL_IF NAME="istherefee" --> Otherwise, you'll still get the message that there's an additional charge of $0.00 . Hope that helps Ryan Higgins ----LibLime---------------------------------- Providing Open-Source Solutions for Libraries Migration, Training, Maintenance and Support Featuring Koha ILS : http://liblime.com/koha --------------------------------------------- ----- "Chris Cormack" <crc@liblime.com> wrote: | On 16/05/2007, at 7:49 PM, Kevin O'Rourke wrote: | | > Chartrand, Michael wrote: | >> I have an additional question for the list: | >> | >> How does one eliminate this message to the borrower when they | >> place a reserve? We don't charge and I can't seem to find where | >> or how to eliminate this phrase. Searched all of Koha's files for | | >> it--to no avail | >> | >> Note there will be a reserve charge of $1.00 | > I've encountered this problem as well, but nobody on the list seems | | > to know how to fix it. This mailing list seems to be lacking in | > people who know about the internals of Koha. I've had lots of help | | > on library topics (the complexities of MARC for example) but very | > little on anything that involves Koha's innards. | | Hi all | | There are quite a few of us who know the innards on the list, | unfortunately most of us dont have the time available to answer | questions, so we answer them when we can. | | One place to catch the developers is on irc, or filing a bug in | bugs.koha.org | | The problem is in opac-reserve.pl line 203 | $fee = 1; | | You can make that $fee = 0; | | That will turn it off, it'll be fixed to use a system preference, or | | the CalcReserveFee subroutine for the next release. | | Chris | | | -- | Chris Cormack chris.cormack@liblime.com | VP Research and Development www.liblime.com | LibLime +64 21 542 131 | | | _______________________________________________ | Koha mailing list | Koha@lists.katipo.co.nz | http://lists.katipo.co.nz/mailman/listinfo/koha
participants (4)
-
Chartrand, Michael -
Chris Cormack -
Kevin O'Rourke -
Ryan Higgins