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

(-)a/Koha/Schema/Result/Issue.pm (-1 / +7 lines)
Lines 468-480 __PACKAGE__->has_many( Link Here
468
    'issue_id'
468
    'issue_id'
469
);
469
);
470
470
471
=head2 koha_object_class
472
473
Returns the Koha object class for this result.
474
475
=cut
476
471
sub koha_object_class {
477
sub koha_object_class {
472
    'Koha::Checkout';
478
    'Koha::Checkout';
473
}
479
}
474
480
475
=head2 koha_objects_class
481
=head2 koha_objects_class
476
482
477
Missing POD for koha_objects_class.
483
Returns the Koha objects class for this result.
478
484
479
=cut
485
=cut
480
486
(-)a/Koha/Schema/Result/PatronQuota.pm (-1 / +20 lines)
Lines 145-150 __PACKAGE__->has_many( Link Here
145
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-30 16:04:36
145
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-30 16:04:36
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KG/MIjPSLcpeSlPypwli2Q
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KG/MIjPSLcpeSlPypwli2Q
147
147
148
=head2 koha_object_class
149
150
Returns the Koha object class for this result.
151
152
=cut
153
154
sub koha_object_class {
155
    return 'Koha::Patron::Quota';
156
}
157
158
=head2 koha_objects_class
159
160
Returns the Koha objects class for this result.
161
162
=cut
163
164
sub koha_objects_class {
165
    return 'Koha::Patron::Quotas';
166
}
167
148
168
149
# You can replace this text with custom code or comments, and it will be preserved on regeneration
150
1;
169
1;
(-)a/Koha/Schema/Result/PatronQuotaUsage.pm (-2 / +20 lines)
Lines 173-177 __PACKAGE__->belongs_to( Link Here
173
    { join_type => 'left' }
173
    { join_type => 'left' }
174
);
174
);
175
175
176
# You can replace this text with custom code or comments, and it will be preserved on regeneration
176
=head2 koha_object_class
177
178
Returns the Koha object class for this result.
179
180
=cut
181
182
sub koha_object_class {
183
    return 'Koha::Patron::Quota::Usage';
184
}
185
186
=head2 koha_objects_class
187
188
Returns the Koha objects class for this result.
189
190
=cut
191
192
sub koha_objects_class {
193
    return 'Koha::Patron::Quota::Usages';
194
}
195
177
1;
196
1;
178
- 

Return to bug 38924