From 7e03e02a503ceed577117775fb059426c7a29a79 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 13 Feb 2025 09:44:45 +0000 Subject: [PATCH] Bug 38924: Add issue and old_issue relations to Schema --- Koha/Schema/Result/Issue.pm | 15 +------------- Koha/Schema/Result/PatronQuotaUsage.pm | 28 +++++++++++++++++++++++++- 2 files changed, 28 insertions(+), 15 deletions(-) diff --git a/Koha/Schema/Result/Issue.pm b/Koha/Schema/Result/Issue.pm index 3c06ccafb63..783b5a0d3e6 100644 --- a/Koha/Schema/Result/Issue.pm +++ b/Koha/Schema/Result/Issue.pm @@ -434,23 +434,10 @@ Related object: L =cut __PACKAGE__->has_many( - 'quota_usages' => 'MyApp::Schema::Result::PatronQuotaUsage', + 'quota_usages' => 'Koha::Schema::Result::PatronQuotaUsage', 'issue_id' ); -=head2 quotas - -Type: many_to_many - -Related object: L - -=cut - -__PACKAGE__->many_to_many( - 'patron_quotas' => 'patron_quota_usages', - 'patron_quota' -); - sub koha_object_class { 'Koha::Checkout'; } diff --git a/Koha/Schema/Result/PatronQuotaUsage.pm b/Koha/Schema/Result/PatronQuotaUsage.pm index 02f6f0508b1..c2d3983ddbf 100644 --- a/Koha/Schema/Result/PatronQuotaUsage.pm +++ b/Koha/Schema/Result/PatronQuotaUsage.pm @@ -141,10 +141,36 @@ __PACKAGE__->belongs_to( { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, ); - # Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-02-07 11:22:06 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WSsSTNOfNnTSyP3AGS9NXA +=head2 issue + +Type: belongs_to + +Related object: L + +=cut + +__PACKAGE__->belongs_to( + issue => 'Koha::Schema::Result::Issue', + 'issue_id', + { join_type => 'left' } +); + +=head2 old_issue + +Type: belongs_to + +Related object: L + +=cut + +__PACKAGE__->belongs_to( + old_issue => 'Koha::Schema::Result::OldIssue', + 'issue_id', + { join_type => 'left' } +); sub koha_object_class { return 'Koha::Patron::Quota::Usage'; -- 2.48.1