Lines 308-313
sub checkin {
Link Here
|
308 |
$permanent_location = Koha::Libraries->find( $item->{permanent_location} )->branchname; |
308 |
$permanent_location = Koha::Libraries->find( $item->{permanent_location} )->branchname; |
309 |
} |
309 |
} |
310 |
$message .= "Item checked-in: $permanent_location - $item->{location}."; |
310 |
$message .= "Item checked-in: $permanent_location - $item->{location}."; |
|
|
311 |
if ( $data->{messages}->{ResFound} ) { |
312 |
$message .= " - Item reserved by another patron"; |
313 |
} |
314 |
|
311 |
} |
315 |
} |
312 |
|
316 |
|
313 |
# Check for overdue fines to display |
317 |
# Check for overdue fines to display |
314 |
- |
|
|