|
Lines 223-228
elsif ( $patron and $op eq "checkout" ) {
Link Here
|
| 223 |
if ( $hold_existed ) { |
223 |
if ( $hold_existed ) { |
| 224 |
my $dtf = Koha::Database->new->schema->storage->datetime_parser; |
224 |
my $dtf = Koha::Database->new->schema->storage->datetime_parser; |
| 225 |
$template->param( |
225 |
$template->param( |
|
|
226 |
issued => 1, |
| 226 |
# If the hold existed before the check in, let's confirm that the charge line exists |
227 |
# If the hold existed before the check in, let's confirm that the charge line exists |
| 227 |
# Note that this should not be needed but since we do not have proper exception handling here we do it this way |
228 |
# Note that this should not be needed but since we do not have proper exception handling here we do it this way |
| 228 |
patron_has_hold_fee => Koha::Account::Lines->search( |
229 |
patron_has_hold_fee => Koha::Account::Lines->search( |
| 229 |
- |
|
|