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 133-142 __PACKAGE__->has_many( Link Here
133
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-04 15:22:18
133
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-04 15:22:18
134
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cXvLM2TgY18pxE2ZJBMouw
134
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cXvLM2TgY18pxE2ZJBMouw
135
135
136
=head2 koha_objects_class
137
138
=cut
139
136
sub koha_objects_class {
140
sub koha_objects_class {
137
    'Koha::Biblio::Volumes';
141
    'Koha::Biblio::Volumes';
138
}
142
}
139
143
144
=head2 koha_object_class
145
146
=cut
147
140
sub koha_object_class {
148
sub koha_object_class {
141
    'Koha::Biblio::Volume';
149
    'Koha::Biblio::Volume';
142
}
150
}
(-)a/Koha/Schema/Result/VolumeItem.pm (-1 / +9 lines)
Lines 112-120 __PACKAGE__->belongs_to( Link Here
112
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-03 18:25:20
112
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-03 18:25:20
113
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:i6YHB4Jq+79kVVYmuurzIQ
113
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:i6YHB4Jq+79kVVYmuurzIQ
114
114
115
=head2 koha_object_class
116
117
=cut
118
115
sub koha_object_class {
119
sub koha_object_class {
116
    'Koha::Biblio::Volume::Item';
120
    'Koha::Biblio::Volume::Item';
117
}
121
}
122
123
=head2 koha_objects_class
124
125
=cut
126
118
sub koha_objects_class {
127
sub koha_objects_class {
119
    'Koha::Biblio::Volume::Items';
128
    'Koha::Biblio::Volume::Items';
120
}
129
}
121
- 

Return to bug 24857