Bugzilla – Attachment 183794 Details for
Bug 18783
Allow automatic claims for serials
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18783: DBIC Build
Bug-18783-DBIC-Build.patch (text/plain), 1.31 KB, created by
Martin Renvoize (ashimema)
on 2025-07-04 14:31:16 UTC
(
hide
)
Description:
Bug 18783: DBIC Build
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-07-04 14:31:16 UTC
Size:
1.31 KB
patch
obsolete
>From 3aa580848d50e46e0125fb06e0c4227ae8db18e9 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Fri, 8 Sep 2023 21:02:12 +0100 >Subject: [PATCH] Bug 18783: DBIC Build > >--- > Koha/Schema/Result/Subscription.pm | 11 +++++++++++ > 1 file changed, 11 insertions(+) > >diff --git a/Koha/Schema/Result/Subscription.pm b/Koha/Schema/Result/Subscription.pm >index be2df217703..55ee3878122 100644 >--- a/Koha/Schema/Result/Subscription.pm >+++ b/Koha/Schema/Result/Subscription.pm >@@ -341,6 +341,14 @@ collection code to assign to serial items > > Template Toolkit syntax to generate the default "Published on (text)" field when receiving an issue this serial > >+=head2 auto_claim_enabled >+ >+ data_type: 'tinyint' >+ default_value: 0 >+ is_nullable: 0 >+ >+enable automatic claiming >+ > =cut > > __PACKAGE__->add_columns( >@@ -434,6 +442,8 @@ __PACKAGE__->add_columns( > { data_type => "varchar", is_nullable => 1, size => 80 }, > "published_on_template", > { data_type => "text", is_nullable => 1 }, >+ "auto_claim_enabled", >+ { data_type => "tinyint", default_value => 0, is_nullable => 0 }, > ); > > =head1 PRIMARY KEY >@@ -612,4 +622,5 @@ __PACKAGE__->add_columns( > '+skip_serialseq' => { is_boolean => 1 }, > ); > >+# You can replace this text with custom content, and it will be preserved on regeneration > 1; >-- >2.50.0
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 18783
:
64195
|
91428
|
124984
|
155458
|
155462
|
155463
|
168423
|
168424
|
168428
|
168429
|
183793
| 183794