|
Lines 164-171
sub store {
Link Here
|
| 164 |
$self->permanent_location( $self->location ); |
164 |
$self->permanent_location( $self->location ); |
| 165 |
} |
165 |
} |
| 166 |
|
166 |
|
| 167 |
$self->_after_item_action_hooks({ action => 'modify' }); |
|
|
| 168 |
|
| 169 |
} |
167 |
} |
| 170 |
|
168 |
|
| 171 |
unless ( $self->dateaccessioned ) { |
169 |
unless ( $self->dateaccessioned ) { |
|
Lines 181-187
sub store {
Link Here
|
| 181 |
my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX }); |
179 |
my $indexer = Koha::SearchEngine::Indexer->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX }); |
| 182 |
$indexer->index_records( $self->biblionumber, "specialUpdate", "biblioserver" ) |
180 |
$indexer->index_records( $self->biblionumber, "specialUpdate", "biblioserver" ) |
| 183 |
unless $params->{skip_record_index}; |
181 |
unless $params->{skip_record_index}; |
| 184 |
|
182 |
$self->get_from_storage->_after_item_action_hooks({ action => $action }); |
| 185 |
return $result; |
183 |
return $result; |
| 186 |
} |
184 |
} |
| 187 |
|
185 |
|
| 188 |
- |
|
|