Bugzilla – Attachment 178589 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: DBIC Schema
Bug-38924-DBIC-Schema.patch (text/plain), 5.62 KB, created by
Martin Renvoize (ashimema)
on 2025-02-24 16:29:31 UTC
(
hide
)
Description:
Bug 38924: DBIC Schema
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-02-24 16:29:31 UTC
Size:
5.62 KB
patch
obsolete
>From 08acbc54088c07c402a306d2a2f33ff8bf138b2c Mon Sep 17 00:00:00 2001 >From: Jacob O'Mara <jacobomara901@gmail.com> >Date: Thu, 30 Jan 2025 16:16:17 +0000 >Subject: [PATCH] Bug 38924: DBIC Schema > >--- > Koha/Schema/Result/Borrower.pm | 19 +++- > Koha/Schema/Result/Issue.pm | 4 +- > Koha/Schema/Result/PatronQuota.pm | 19 +++- > Koha/Schema/Result/PatronQuotaUsage.pm | 120 +++++++++++++++++++++++++ > 4 files changed, 156 insertions(+), 6 deletions(-) > create mode 100644 Koha/Schema/Result/PatronQuotaUsage.pm > >diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm >index b8a3e2f2d76..f22bab5af7c 100644 >--- a/Koha/Schema/Result/Borrower.pm >+++ b/Koha/Schema/Result/Borrower.pm >@@ -1706,6 +1706,21 @@ __PACKAGE__->has_many( > { cascade_copy => 0, cascade_delete => 0 }, > ); > >+=head2 patron_quota_usages >+ >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::PatronQuotaUsage> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "patron_quota_usages", >+ "Koha::Schema::Result::PatronQuotaUsage", >+ { "foreign.patron_id" => "self.borrowernumber" }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ > =head2 patron_quotas > > Type: has_many >@@ -2212,8 +2227,8 @@ Composing rels: L</user_permissions> -> permission > __PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); > > >-# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-15 14:23:33 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:owrnW20RwWMMM8VZtH1yUw >+# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-30 16:04:36 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:O3PkCl78Nhhcp1UODtVV/A > > __PACKAGE__->belongs_to( > "library", >diff --git a/Koha/Schema/Result/Issue.pm b/Koha/Schema/Result/Issue.pm >index bb2b037a0da..813ab4e4385 100644 >--- a/Koha/Schema/Result/Issue.pm >+++ b/Koha/Schema/Result/Issue.pm >@@ -336,8 +336,8 @@ __PACKAGE__->belongs_to( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-14 13:08:04 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Azy+cns0/GJMwsXWJdkolg >+# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-31 16:17:33 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UjFMApIlJ/quE0c2Vc77mA > > __PACKAGE__->add_columns( > '+auto_renew' => { is_boolean => 1 }, >diff --git a/Koha/Schema/Result/PatronQuota.pm b/Koha/Schema/Result/PatronQuota.pm >index 1ca93cd7480..42a7fb33a87 100644 >--- a/Koha/Schema/Result/PatronQuota.pm >+++ b/Koha/Schema/Result/PatronQuota.pm >@@ -126,9 +126,24 @@ __PACKAGE__->belongs_to( > { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, > ); > >+=head2 patron_quota_usages > >-# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-30 13:56:19 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4NGr+IaPuboW4p8f1v+6Ng >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::PatronQuotaUsage> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "patron_quota_usages", >+ "Koha::Schema::Result::PatronQuotaUsage", >+ { "foreign.patron_quota_id" => "self.id" }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-30 16:04:36 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KG/MIjPSLcpeSlPypwli2Q > > > # You can replace this text with custom code or comments, and it will be preserved on regeneration >diff --git a/Koha/Schema/Result/PatronQuotaUsage.pm b/Koha/Schema/Result/PatronQuotaUsage.pm >new file mode 100644 >index 00000000000..87035c8032f >--- /dev/null >+++ b/Koha/Schema/Result/PatronQuotaUsage.pm >@@ -0,0 +1,120 @@ >+use utf8; >+package Koha::Schema::Result::PatronQuotaUsage; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::PatronQuotaUsage >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<patron_quota_usage> >+ >+=cut >+ >+__PACKAGE__->table("patron_quota_usage"); >+ >+=head1 ACCESSORS >+ >+=head2 id >+ >+ data_type: 'integer' >+ is_auto_increment: 1 >+ is_nullable: 0 >+ >+unique identifier for quota usage record >+ >+=head2 patron_quota_id >+ >+ data_type: 'integer' >+ is_foreign_key: 1 >+ is_nullable: 0 >+ >+foreign key linking to patron_quota.id >+ >+=head2 issue_id >+ >+ data_type: 'integer' >+ is_nullable: 1 >+ >+foreign key linking to issues.issue_id >+ >+=head2 patron_id >+ >+ data_type: 'integer' >+ is_foreign_key: 1 >+ is_nullable: 0 >+ >+foreign key linking to borrowers.borrowernumber >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "id", >+ { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, >+ "patron_quota_id", >+ { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, >+ "issue_id", >+ { data_type => "integer", is_nullable => 1 }, >+ "patron_id", >+ { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("id"); >+ >+=head1 RELATIONS >+ >+=head2 patron >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::Borrower> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "patron", >+ "Koha::Schema::Result::Borrower", >+ { borrowernumber => "patron_id" }, >+ { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, >+); >+ >+=head2 patron_quota >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::PatronQuota> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "patron_quota", >+ "Koha::Schema::Result::PatronQuota", >+ { id => "patron_quota_id" }, >+ { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, >+); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-31 16:17:33 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:V5C3mWjeEHKuqk42HnrxOg >+ >+ >+# You can replace this text with custom code or comments, and it will be preserved on regeneration >+1; >-- >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