Lines 42-47
use Koha::Patrons;
Link Here
|
42 |
use Koha::SearchEngine::Indexer; |
42 |
use Koha::SearchEngine::Indexer; |
43 |
use Koha::UI::Form::Builder::Item; |
43 |
use Koha::UI::Form::Builder::Item; |
44 |
use Koha::Result::Boolean; |
44 |
use Koha::Result::Boolean; |
|
|
45 |
use Koha::BackgroundJob; |
45 |
|
46 |
|
46 |
use Encode qw( encode_utf8 ); |
47 |
use Encode qw( encode_utf8 ); |
47 |
use List::MoreUtils qw( any uniq ); |
48 |
use List::MoreUtils qw( any uniq ); |
Lines 410-415
if ( $op eq "cud-additem" ) {
Link Here
|
410 |
my $testbarcode; |
411 |
my $testbarcode; |
411 |
my $barcodeobj = C4::Barcodes->new; |
412 |
my $barcodeobj = C4::Barcodes->new; |
412 |
$testbarcode = $barcodeobj->next_value($oldbarcode) if $barcodeobj; |
413 |
$testbarcode = $barcodeobj->next_value($oldbarcode) if $barcodeobj; |
|
|
414 |
Koha::BackgroundJob->before_batch_action_hooks(); |
413 |
if ( $oldbarcode && !$testbarcode ) { |
415 |
if ( $oldbarcode && !$testbarcode ) { |
414 |
|
416 |
|
415 |
push @errors, "no_next_barcode"; |
417 |
push @errors, "no_next_barcode"; |
Lines 487-492
if ( $op eq "cud-additem" ) {
Link Here
|
487 |
|
489 |
|
488 |
undef($current_item); |
490 |
undef($current_item); |
489 |
} |
491 |
} |
|
|
492 |
Koha::BackgroundJob->after_batch_action_hooks(); |
490 |
} |
493 |
} |
491 |
if ( $frameworkcode eq 'FA' && $fa_circborrowernumber ) { |
494 |
if ( $frameworkcode eq 'FA' && $fa_circborrowernumber ) { |
492 |
print $input->redirect( '/cgi-bin/koha/circ/circulation.pl?' |
495 |
print $input->redirect( '/cgi-bin/koha/circ/circulation.pl?' |
Lines 549-558
if ( $op eq "cud-additem" ) {
Link Here
|
549 |
|
552 |
|
550 |
#------------------------------------------------------------------------------- |
553 |
#------------------------------------------------------------------------------- |
551 |
my $items = Koha::Items->search( { biblionumber => $biblionumber } ); |
554 |
my $items = Koha::Items->search( { biblionumber => $biblionumber } ); |
|
|
555 |
Koha::BackgroundJob->before_batch_action_hooks(); |
552 |
while ( my $item = $items->next ) { |
556 |
while ( my $item = $items->next ) { |
553 |
my $deleted = $item->safe_delete( { skip_record_index => 1 } ); |
557 |
my $deleted = $item->safe_delete( { skip_record_index => 1 } ); |
554 |
push @errors, @{ $deleted->messages }[0]->message unless $deleted; |
558 |
push @errors, @{ $deleted->messages }[0]->message unless $deleted; |
555 |
} |
559 |
} |
|
|
560 |
Koha::BackgroundJob->after_batch_action_hooks(); |
556 |
my $indexer = Koha::SearchEngine::Indexer->new( { index => $Koha::SearchEngine::BIBLIOS_INDEX } ); |
561 |
my $indexer = Koha::SearchEngine::Indexer->new( { index => $Koha::SearchEngine::BIBLIOS_INDEX } ); |
557 |
$indexer->index_records( $biblionumber, "specialUpdate", "biblioserver" ); |
562 |
$indexer->index_records( $biblionumber, "specialUpdate", "biblioserver" ); |
558 |
if (@errors) { |
563 |
if (@errors) { |