Bugzilla – Attachment 178605 Details for
Bug 38924
Introduce an organization level loan 'Quota' system for Koha
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38924: Add issue and old_issue relations to Schema
Bug-38924-Add-issue-and-oldissue-relations-to-Sche.patch (text/plain), 2.10 KB, created by
Martin Renvoize (ashimema)
on 2025-02-24 16:30:12 UTC
(
hide
)
Description:
Bug 38924: Add issue and old_issue relations to Schema
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-02-24 16:30:12 UTC
Size:
2.10 KB
patch
obsolete
>From 7e03e02a503ceed577117775fb059426c7a29a79 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >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<Koha::Schema::Result::PatronQuotaUsage> > =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<Koha::Schema::Result::PatronQuota> >- >-=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<Koha::Schema::Result::Issue> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ issue => 'Koha::Schema::Result::Issue', >+ 'issue_id', >+ { join_type => 'left' } >+); >+ >+=head2 old_issue >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::OldIssue> >+ >+=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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38924
:
178582
|
178583
|
178584
|
178585
|
178586
|
178587
|
178588
|
178589
|
178590
|
178591
|
178592
|
178593
|
178594
|
178595
|
178596
|
178597
|
178598
|
178599
|
178600
|
178601
|
178602
|
178603
|
178604
| 178605 |
178606
|
178607
|
178608