View | Details | Raw Unified | Return to bug 38505
Collapse All | Expand All

(-)a/C4/Circulation.pm (-2 / +1 lines)
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
- 

Return to bug 38505