http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10663 --- Comment #40 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- (In reply to M. de Rooy from comment #27)
The circulation.tt template also contains another problem: If I cannot renew because of a hold, it should still be possible to check in the item. But this is not possible due to the same condition used:
[% IF ( todayissue.renew_error_on_reserve ) %] <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% todayissue.biblionumber %]">On hold</a> <input type="checkbox" name="all_barcodes[]" value="[% todayissue.barcode %]" checked="checked" style="display: none;" /> </td> [% ELSE %] <td><input type="checkbox" class="radio" name="barcodes[]" value="[% todayissue.barcode %]" /> <input type="checkbox" name="all_barcodes[]" value="[% todayissue.barcode %]" checked="checked" style="display: none;" /> </td> [% END %]
Hi Marcel, IIRC this was done on purpose, because when checking in items from the patron account the printing of the reserve slip would not be triggered. So it forces you to properly return the items. -- You are receiving this mail because: You are watching all bug changes.