View | Details | Raw Unified | Return to bug 31569
Collapse All | Expand All

(-)a/Koha/Import/Record/Biblios.pm (-4 lines)
Lines 17-26 package Koha::Import::Record::Biblios; Link Here
17
17
18
use Modern::Perl;
18
use Modern::Perl;
19
19
20
use Carp;
21
22
use Koha::Database;
23
24
use Koha::Import::Record::Biblio;
20
use Koha::Import::Record::Biblio;
25
21
26
use base qw(Koha::Objects);
22
use base qw(Koha::Objects);
(-)a/Koha/Schema/Result/ImportBiblio.pm (-2 / +6 lines)
Lines 128-133 __PACKAGE__->belongs_to( Link Here
128
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-17 11:17:50
128
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-17 11:17:50
129
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Oj/1VkjYP538OlNeu41mqA
129
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Oj/1VkjYP538OlNeu41mqA
130
130
131
sub koha_object_class {
132
    'Koha::Import::Record::Biblio';
133
}
134
sub koha_objects_class {
135
    'Koha::Import::Record::Biblios';
136
}
131
137
132
# You can replace this text with custom content, and it will be preserved on regeneration
133
1;
138
1;
134
- 

Return to bug 31569