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

(-)a/C4/Circulation.pm (-4 / +5 lines)
Lines 898-906 sub CanBookBeIssued { Link Here
898
    }
898
    }
899
899
900
    # Additional Materials Check
900
    # Additional Materials Check
901
    my $no_of_parts = $item_object->materials;
901
    if ( C4::Context->preference("CircConfirmParts") ) {
902
    if ( $no_of_parts > 0 ) {
902
        my $no_of_parts = $item_object->materials || 0;
903
        $needsconfirmation{additional_materials} = $no_of_parts;
903
        if ( $no_of_parts > 0 ) {
904
            $needsconfirmation{additional_materials} = $no_of_parts;
905
        }
904
    }
906
    }
905
907
906
    #
908
    #
907
- 

Return to bug 25261