Bug 30778: Remove ModBiblioInBatch
To test:
1 - git grep ModBiblioInBatch
2 - Confirm these occurences are not calls
3 - Apply patch
4 - git grep ModBiblioInBatch
5 - No occurences
Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit 46fabf9bb5
)
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
This commit is contained in:
parent
0c69a97394
commit
d9a939c220
1 changed files with 0 additions and 15 deletions
|
@ -54,7 +54,6 @@ BEGIN {
|
|||
AddBiblioToBatch
|
||||
AddItemsToImportBiblio
|
||||
ModAuthorityInBatch
|
||||
ModBiblioInBatch
|
||||
|
||||
BatchStageMarcRecords
|
||||
BatchFindDuplicates
|
||||
|
@ -306,20 +305,6 @@ sub AddBiblioToBatch {
|
|||
return $import_record_id;
|
||||
}
|
||||
|
||||
=head2 ModBiblioInBatch
|
||||
|
||||
ModBiblioInBatch($import_record_id, $marc_record);
|
||||
|
||||
=cut
|
||||
|
||||
sub ModBiblioInBatch {
|
||||
my ($import_record_id, $marc_record) = @_;
|
||||
|
||||
_update_import_record_marc($import_record_id, $marc_record, C4::Context->preference('marcflavour'));
|
||||
_update_biblio_fields($import_record_id, $marc_record);
|
||||
|
||||
}
|
||||
|
||||
=head2 AddAuthToBatch
|
||||
|
||||
my $import_record_id = AddAuthToBatch($batch_id, $record_sequence,
|
||||
|
|
Loading…
Reference in a new issue