Lines 415-421
if ($barcode) {
Link Here
|
415 |
} |
415 |
} |
416 |
|
416 |
|
417 |
# Mark missing bundle items as lost and report unexpected items |
417 |
# Mark missing bundle items as lost and report unexpected items |
418 |
if ( $item && $item->is_bundle && $query->param('confirm_items_bundle_return') ) { |
418 |
if ( $item && $item->is_bundle && $query->param('confirm_items_bundle_return') && !$query->param('do_not_verify_items_bundle_contents') ) { |
419 |
my $BundleLostValue = C4::Context->preference('BundleLostValue'); |
419 |
my $BundleLostValue = C4::Context->preference('BundleLostValue'); |
420 |
my $barcodes = $query->param('verify-items-bundle-contents-barcodes'); |
420 |
my $barcodes = $query->param('verify-items-bundle-contents-barcodes'); |
421 |
my @barcodes = map { s/^\s+|\s+$//gr } ( split /\n/, $barcodes ); |
421 |
my @barcodes = map { s/^\s+|\s+$//gr } ( split /\n/, $barcodes ); |