Lines 844-852
sub CanBookBeIssued {
Link Here
|
844 |
} |
844 |
} |
845 |
|
845 |
|
846 |
# Additional Materials Check |
846 |
# Additional Materials Check |
847 |
my $no_of_parts = $item_object->materials; |
847 |
if ( C4::Context->preference("CircConfirmParts") ) { |
848 |
if ( $no_of_parts > 0 ) { |
848 |
my $no_of_parts = $item_object->materials || 0; |
849 |
$needsconfirmation{additional_materials} = $no_of_parts; |
849 |
if ( $no_of_parts > 0 ) { |
|
|
850 |
$needsconfirmation{additional_materials} = $no_of_parts; |
851 |
} |
850 |
} |
852 |
} |
851 |
|
853 |
|
852 |
# |
854 |
# |
853 |
- |
|
|