From 5ddd707c8e689818afdd1c0d92ab32feb2a01e33 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 7 Feb 2025 12:11:52 +0000 Subject: [PATCH] Bug 38924: Add relations after the hash in DBIC This adds additional relations to our DBIC classes to allow relation traversal in our Koha::Objects --- Koha/Schema/Result/Issue.pm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/Koha/Schema/Result/Issue.pm b/Koha/Schema/Result/Issue.pm index 813ab4e4385..3c06ccafb63 100644 --- a/Koha/Schema/Result/Issue.pm +++ b/Koha/Schema/Result/Issue.pm @@ -425,6 +425,32 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); +=head2 quota_usages + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + 'quota_usages' => 'MyApp::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'; } -- 2.48.1