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