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

(-)a/Koha/Schema/Result/Issue.pm (-14 / +1 lines)
Lines 434-456 Related object: L<Koha::Schema::Result::PatronQuotaUsage> Link Here
434
=cut
434
=cut
435
435
436
__PACKAGE__->has_many(
436
__PACKAGE__->has_many(
437
    'quota_usages' => 'MyApp::Schema::Result::PatronQuotaUsage',
437
    'quota_usages' => 'Koha::Schema::Result::PatronQuotaUsage',
438
    'issue_id'
438
    'issue_id'
439
);
439
);
440
440
441
=head2 quotas
442
443
Type: many_to_many
444
445
Related object: L<Koha::Schema::Result::PatronQuota>
446
447
=cut
448
449
__PACKAGE__->many_to_many(
450
    'patron_quotas' => 'patron_quota_usages',
451
    'patron_quota'
452
);
453
454
sub koha_object_class {
441
sub koha_object_class {
455
    'Koha::Checkout';
442
    'Koha::Checkout';
456
}
443
}
(-)a/Koha/Schema/Result/PatronQuotaUsage.pm (-2 / +27 lines)
Lines 141-150 __PACKAGE__->belongs_to( Link Here
141
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
141
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
142
);
142
);
143
143
144
145
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-02-07 11:22:06
144
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-02-07 11:22:06
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WSsSTNOfNnTSyP3AGS9NXA
145
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WSsSTNOfNnTSyP3AGS9NXA
147
146
147
=head2 issue
148
149
Type: belongs_to
150
151
Related object: L<Koha::Schema::Result::Issue>
152
153
=cut
154
155
__PACKAGE__->belongs_to(
156
    issue => 'Koha::Schema::Result::Issue',
157
    'issue_id',
158
    { join_type => 'left' }
159
);
160
161
=head2 old_issue
162
163
Type: belongs_to
164
165
Related object: L<Koha::Schema::Result::OldIssue>
166
167
=cut
168
169
__PACKAGE__->belongs_to(
170
    old_issue => 'Koha::Schema::Result::OldIssue',
171
    'issue_id',
172
    { join_type => 'left' }
173
);
148
174
149
sub koha_object_class {
175
sub koha_object_class {
150
    return 'Koha::Patron::Quota::Usage';
176
    return 'Koha::Patron::Quota::Usage';
151
- 

Return to bug 38924