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

(-)a/Koha/Schema/Result/PatronQuota.pm (-6 / +3 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
149
# You can replace this text with custom code or comments, and it will be preserved on regeneration
150
148
=head3 koha_object_class
151
=head3 koha_object_class
149
152
150
Returns the package name for patron quota objects
153
Returns the package name for patron quota objects
Lines 155-166 sub koha_object_class { Link Here
155
    return 'Koha::Patron::Quota';
158
    return 'Koha::Patron::Quota';
156
}
159
}
157
160
158
# You can replace this text with custom code or comments, and it will be preserved on regeneration
159
160
sub koha_object_class {
161
    return 'Koha::Patron::Quota';
162
}
163
164
sub koha_objects_class {
161
sub koha_objects_class {
165
    return 'Koha::Patron::Quotas';
162
    return 'Koha::Patron::Quotas';
166
}
163
}
(-)a/Koha/Schema/Result/PatronQuotaUsage.pm (-7 / +3 lines)
Lines 145-150 __PACKAGE__->belongs_to( Link Here
145
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-08-21 16:54:49
145
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-08-21 16:54:49
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x+OvLQNInT0DkfPmiZwZzg
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x+OvLQNInT0DkfPmiZwZzg
147
147
148
149
# You can replace this text with custom code or comments, and it will be preserved on regeneration
150
148
=head2 checkout
151
=head2 checkout
149
152
150
Type: belongs_to
153
Type: belongs_to
Lines 177-188 sub koha_object_class { Link Here
177
    return 'Koha::Patron::Quota::Usage';
180
    return 'Koha::Patron::Quota::Usage';
178
}
181
}
179
182
180
# You can replace this text with custom code or comments, and it will be preserved on regeneration
181
182
sub koha_object_class {
183
    return 'Koha::Patron::Quota::Usage';
184
}
185
186
sub koha_objects_class {
183
sub koha_objects_class {
187
    return 'Koha::Patron::Quota::Usages';
184
    return 'Koha::Patron::Quota::Usages';
188
}
185
}
189
- 

Return to bug 38924