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

(-)a/Koha/Schema/Result/Issue.pm (+7 lines)
Lines 403-408 __PACKAGE__->might_have( Link Here
403
    { cascade_copy       => 0, cascade_delete => 0 },
403
    { cascade_copy       => 0, cascade_delete => 0 },
404
);
404
);
405
405
406
__PACKAGE__->has_many(
407
    "accountlines",
408
    "Koha::Schema::Result::Accountline",
409
    { "foreign.issue_id" => "self.issue_id" },
410
    { cascade_copy       => 0, cascade_delete => 0 },
411
);
412
406
sub koha_object_class {
413
sub koha_object_class {
407
    'Koha::Checkout';
414
    'Koha::Checkout';
408
}
415
}
(-)a/Koha/Schema/Result/OldIssue.pm (-1 / +7 lines)
Lines 366-371 Related object: L<Koha::Schema::Result::ReturnClaim> Link Here
366
366
367
=cut
367
=cut
368
368
369
__PACKAGE__->has_many(
370
    "accountlines",
371
    "Koha::Schema::Result::Accountline",
372
    { "foreign.issue_id" => "self.issue_id" },
373
    { cascade_copy       => 0, cascade_delete => 0 },
374
);
375
369
__PACKAGE__->might_have(
376
__PACKAGE__->might_have(
370
    "return_claim",
377
    "return_claim",
371
    "Koha::Schema::Result::ReturnClaim",
378
    "Koha::Schema::Result::ReturnClaim",
372
- 

Return to bug 30612