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

(-)a/Koha/Biblio/Volume/Item.pm (-2 lines)
Lines 25-32 Koha::Volume::Item - Koha Volume Item Object class Link Here
25
25
26
=head1 API
26
=head1 API
27
27
28
=head2 Class methods
29
30
=head2 Internal methods
28
=head2 Internal methods
31
29
32
=head3 _type
30
=head3 _type
(-)a/Koha/Biblio/Volume/Items.pm (-2 lines)
Lines 27-34 Koha::Biblio::Volume::Items - Koha Volume Items Object set class Link Here
27
27
28
=head1 API
28
=head1 API
29
29
30
=head2 Class methods
31
32
=head2 Internal methods
30
=head2 Internal methods
33
31
34
=head3 _type
32
=head3 _type
(-)a/Koha/Biblio/Volumes.pm (-2 lines)
Lines 27-34 Koha::Biblio::Volumes - Koha Volume Object set class Link Here
27
27
28
=head1 API
28
=head1 API
29
29
30
=head2 Class methods
31
32
=head2 Internal methods
30
=head2 Internal methods
33
31
34
=head3 _type
32
=head3 _type
(-)a/Koha/Schema/Result/Volume.pm (+8 lines)
Lines 139-148 __PACKAGE__->has_many( Link Here
139
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-05-15 17:43:22
139
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-05-15 17:43:22
140
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0synkJlBPpaIOLrX2KUKiA
140
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0synkJlBPpaIOLrX2KUKiA
141
141
142
=head2 koha_objects_class
143
144
=cut
145
142
sub koha_objects_class {
146
sub koha_objects_class {
143
    'Koha::Biblio::Volumes';
147
    'Koha::Biblio::Volumes';
144
}
148
}
145
149
150
=head2 koha_object_class
151
152
=cut
153
146
sub koha_object_class {
154
sub koha_object_class {
147
    'Koha::Biblio::Volume';
155
    'Koha::Biblio::Volume';
148
}
156
}
(-)a/Koha/Schema/Result/VolumeItem.pm (-1 / +9 lines)
Lines 128-136 __PACKAGE__->belongs_to( Link Here
128
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-05-15 17:43:22
128
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-05-15 17:43:22
129
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jocpH15LNMhDBp6EbZJNsg
129
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jocpH15LNMhDBp6EbZJNsg
130
130
131
=head2 koha_object_class
132
133
=cut
134
131
sub koha_object_class {
135
sub koha_object_class {
132
    'Koha::Biblio::Volume::Item';
136
    'Koha::Biblio::Volume::Item';
133
}
137
}
138
139
=head2 koha_objects_class
140
141
=cut
142
134
sub koha_objects_class {
143
sub koha_objects_class {
135
    'Koha::Biblio::Volume::Items';
144
    'Koha::Biblio::Volume::Items';
136
}
145
}
137
- 

Return to bug 24857