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