Lines 780-786
sub CanBookBeIssued {
Link Here
|
780 |
my $onsite_checkout = $params->{onsite_checkout} || 0; |
780 |
my $onsite_checkout = $params->{onsite_checkout} || 0; |
781 |
my $override_high_holds = $params->{override_high_holds} || 0; |
781 |
my $override_high_holds = $params->{override_high_holds} || 0; |
782 |
|
782 |
|
783 |
my $item_object = $params->{item} |
783 |
my $item_object = !$barcode ? undef : $params->{item} |
784 |
// Koha::Items->find( { barcode => $barcode } ); |
784 |
// Koha::Items->find( { barcode => $barcode } ); |
785 |
|
785 |
|
786 |
# MANDATORY CHECKS - unless item exists, nothing else matters |
786 |
# MANDATORY CHECKS - unless item exists, nothing else matters |
787 |
- |
|
|