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

(-)a/C4/Circulation.pm (-4 / +5 lines)
Lines 880-888 sub CanBookBeIssued { Link Here
880
    }
880
    }
881
881
882
    # Additional Materials Check
882
    # Additional Materials Check
883
    my $no_of_parts = $item_object->materials;
883
    if ( C4::Context->preference("CircConfirmParts") ) {
884
    if ( $no_of_parts > 0 ) {
884
        my $no_of_parts = $item_object->materials || 0;
885
        $needsconfirmation{additional_materials} = $no_of_parts;
885
        if ( $no_of_parts > 0 ) {
886
            $needsconfirmation{additional_materials} = $no_of_parts;
887
        }
886
    }
888
    }
887
889
888
    #
890
    #
889
- 

Return to bug 25261