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 |
=head2 issue |
149 |
|
150 |
Type: belongs_to |
151 |
|
152 |
Related object: L<Koha::Schema::Result::Issue> |
153 |
|
154 |
=cut |
155 |
|
156 |
__PACKAGE__->belongs_to( |
157 |
issue => 'Koha::Schema::Result::Issue', |
158 |
'issue_id', |
159 |
{ join_type => 'left' } |
160 |
); |
161 |
|
162 |
=head2 old_issue |
163 |
|
164 |
Type: belongs_to |
165 |
|
166 |
Related object: L<Koha::Schema::Result::OldIssue> |
167 |
|
168 |
=cut |
169 |
|
170 |
__PACKAGE__->belongs_to( |
171 |
old_issue => 'Koha::Schema::Result::OldIssue', |
172 |
'issue_id', |
173 |
{ join_type => 'left' } |
174 |
); |
148 |
|
175 |
|
149 |
sub koha_object_class { |
176 |
sub koha_object_class { |
150 |
return 'Koha::Patron::Quota::Usage'; |
177 |
return 'Koha::Patron::Quota::Usage'; |
151 |
- |
|
|