Lines 217-231
sub store {
Link Here
|
217 |
|
217 |
|
218 |
my $original = Koha::Items->find( $self->itemnumber ); # $original will be undef if $action eq 'create' |
218 |
my $original = Koha::Items->find( $self->itemnumber ); # $original will be undef if $action eq 'create' |
219 |
my $result = $self->SUPER::store; |
219 |
my $result = $self->SUPER::store; |
|
|
220 |
$self->discard_changes; |
220 |
if ( $log_action && C4::Context->preference("CataloguingLog") ) { |
221 |
if ( $log_action && C4::Context->preference("CataloguingLog") ) { |
221 |
$action eq 'create' |
222 |
$action eq 'create' |
222 |
? logaction( "CATALOGUING", "ADD", $self->itemnumber, "item" ) |
223 |
? logaction( "CATALOGUING", "ADD", $self->itemnumber, 'item', undef, $self ) |
223 |
: logaction( "CATALOGUING", "MODIFY", $self->itemnumber, $self, undef, $original ); |
224 |
: logaction( "CATALOGUING", "MODIFY", $self->itemnumber, $self, undef, $original ); |
224 |
} |
225 |
} |
225 |
my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX }); |
226 |
my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX }); |
226 |
$indexer->index_records( $self->biblionumber, "specialUpdate", "biblioserver" ) |
227 |
$indexer->index_records( $self->biblionumber, "specialUpdate", "biblioserver" ) |
227 |
unless $params->{skip_record_index}; |
228 |
unless $params->{skip_record_index}; |
228 |
$self->get_from_storage->_after_item_action_hooks({ action => $action }); |
229 |
$self->_after_item_action_hooks({ action => $action }); |
229 |
|
230 |
|
230 |
Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue->new->enqueue( |
231 |
Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue->new->enqueue( |
231 |
{ |
232 |
{ |
232 |
- |
|
|