Lines 411-417
if ( $op eq "cud-additem" ) {
Link Here
|
411 |
my $testbarcode; |
411 |
my $testbarcode; |
412 |
my $barcodeobj = C4::Barcodes->new; |
412 |
my $barcodeobj = C4::Barcodes->new; |
413 |
$testbarcode = $barcodeobj->next_value($oldbarcode) if $barcodeobj; |
413 |
$testbarcode = $barcodeobj->next_value($oldbarcode) if $barcodeobj; |
414 |
Koha::BackgroundJob->before_batch_action_hooks(); |
414 |
Koha::BackgroundJob->before_batch_action_hooks({ action => 'add_item' }); |
415 |
if ( $oldbarcode && !$testbarcode ) { |
415 |
if ( $oldbarcode && !$testbarcode ) { |
416 |
|
416 |
|
417 |
push @errors, "no_next_barcode"; |
417 |
push @errors, "no_next_barcode"; |
Lines 489-495
if ( $op eq "cud-additem" ) {
Link Here
|
489 |
|
489 |
|
490 |
undef($current_item); |
490 |
undef($current_item); |
491 |
} |
491 |
} |
492 |
Koha::BackgroundJob->after_batch_action_hooks(); |
492 |
Koha::BackgroundJob->after_batch_action_hooks({ action => 'add_item' }); |
493 |
} |
493 |
} |
494 |
if ( $frameworkcode eq 'FA' && $fa_circborrowernumber ) { |
494 |
if ( $frameworkcode eq 'FA' && $fa_circborrowernumber ) { |
495 |
print $input->redirect( '/cgi-bin/koha/circ/circulation.pl?' |
495 |
print $input->redirect( '/cgi-bin/koha/circ/circulation.pl?' |
Lines 552-563
if ( $op eq "cud-additem" ) {
Link Here
|
552 |
|
552 |
|
553 |
#------------------------------------------------------------------------------- |
553 |
#------------------------------------------------------------------------------- |
554 |
my $items = Koha::Items->search( { biblionumber => $biblionumber } ); |
554 |
my $items = Koha::Items->search( { biblionumber => $biblionumber } ); |
555 |
Koha::BackgroundJob->before_batch_action_hooks(); |
555 |
Koha::BackgroundJob->before_batch_action_hooks({ action => 'del_all_item' }); |
556 |
while ( my $item = $items->next ) { |
556 |
while ( my $item = $items->next ) { |
557 |
my $deleted = $item->safe_delete( { skip_record_index => 1 } ); |
557 |
my $deleted = $item->safe_delete( { skip_record_index => 1 } ); |
558 |
push @errors, @{ $deleted->messages }[0]->message unless $deleted; |
558 |
push @errors, @{ $deleted->messages }[0]->message unless $deleted; |
559 |
} |
559 |
} |
560 |
Koha::BackgroundJob->after_batch_action_hooks(); |
560 |
Koha::BackgroundJob->after_batch_action_hooks({ action => 'del_all_item' }); |
561 |
my $indexer = Koha::SearchEngine::Indexer->new( { index => $Koha::SearchEngine::BIBLIOS_INDEX } ); |
561 |
my $indexer = Koha::SearchEngine::Indexer->new( { index => $Koha::SearchEngine::BIBLIOS_INDEX } ); |
562 |
$indexer->index_records( $biblionumber, "specialUpdate", "biblioserver" ); |
562 |
$indexer->index_records( $biblionumber, "specialUpdate", "biblioserver" ); |
563 |
if (@errors) { |
563 |
if (@errors) { |