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

(-)a/Koha/Schema/Result/Issue.pm (+7 lines)
Lines 388-393 __PACKAGE__->might_have( Link Here
388
    { cascade_copy       => 0, cascade_delete => 0 },
388
    { cascade_copy       => 0, cascade_delete => 0 },
389
);
389
);
390
390
391
__PACKAGE__->has_many(
392
    "accountlines",
393
    "Koha::Schema::Result::Accountline",
394
    { "foreign.issue_id" => "self.issue_id" },
395
    { cascade_copy       => 0, cascade_delete => 0 },
396
);
397
391
sub koha_object_class {
398
sub koha_object_class {
392
    'Koha::Checkout';
399
    'Koha::Checkout';
393
}
400
}
(-)a/Koha/Schema/Result/OldIssue.pm (-1 / +7 lines)
Lines 351-356 Related object: L<Koha::Schema::Result::ReturnClaim> Link Here
351
351
352
=cut
352
=cut
353
353
354
__PACKAGE__->has_many(
355
    "accountlines",
356
    "Koha::Schema::Result::Accountline",
357
    { "foreign.issue_id" => "self.issue_id" },
358
    { cascade_copy       => 0, cascade_delete => 0 },
359
);
360
354
__PACKAGE__->might_have(
361
__PACKAGE__->might_have(
355
    "return_claim",
362
    "return_claim",
356
    "Koha::Schema::Result::ReturnClaim",
363
    "Koha::Schema::Result::ReturnClaim",
357
- 

Return to bug 30612