Lines 372-378
if (@$barcodes) {
Link Here
|
372 |
} |
372 |
} |
373 |
} |
373 |
} |
374 |
|
374 |
|
375 |
unless( $onsite_checkout and C4::Context->preference("OnSiteCheckoutsForce") ) { |
375 |
if ( $error->{UNKNOWN_BARCODE} or not $onsite_checkout or not C4::Context->preference("OnSiteCheckoutsForce") ) { |
376 |
delete $question->{'DEBT'} if ($debt_confirmed); |
376 |
delete $question->{'DEBT'} if ($debt_confirmed); |
377 |
foreach my $impossible ( keys %$error ) { |
377 |
foreach my $impossible ( keys %$error ) { |
378 |
$template_params->{$impossible} = $$error{$impossible}; |
378 |
$template_params->{$impossible} = $$error{$impossible}; |
Lines 380-386
if (@$barcodes) {
Link Here
|
380 |
$blocker = 1; |
380 |
$blocker = 1; |
381 |
} |
381 |
} |
382 |
} |
382 |
} |
383 |
if( !$blocker || $force_allow_issue ){ |
383 |
|
|
|
384 |
if( $item and !$blocker or $force_allow_issue ){ |
384 |
my $confirm_required = 0; |
385 |
my $confirm_required = 0; |
385 |
unless($issueconfirmed){ |
386 |
unless($issueconfirmed){ |
386 |
# Get the item title for more information |
387 |
# Get the item title for more information |
387 |
- |
|
|