|
Lines 316-321
__PACKAGE__->belongs_to(
Link Here
|
| 316 |
}, |
316 |
}, |
| 317 |
); |
317 |
); |
| 318 |
|
318 |
|
|
|
319 |
=head2 item |
| 320 |
|
| 321 |
Type: belongs_to |
| 322 |
|
| 323 |
Related object: L<Koha::Schema::Result::Item> |
| 324 |
|
| 325 |
=cut |
| 326 |
|
| 327 |
__PACKAGE__->belongs_to( |
| 328 |
"item", |
| 329 |
"Koha::Schema::Result::Item", |
| 330 |
{ itemnumber => "itemnumber" }, |
| 331 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
| 332 |
); |
| 333 |
|
| 319 |
sub koha_objects_class { |
334 |
sub koha_objects_class { |
| 320 |
'Koha::Checkouts::ReturnClaims'; |
335 |
'Koha::Checkouts::ReturnClaims'; |
| 321 |
} |
336 |
} |
| 322 |
- |
|
|