Bugzilla – Attachment 117993 Details for
Bug 23207
Allow automatic checkin/return at end of circulation period
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23207: Set automatic_checkin column as boolean in Itemtype schema
Bug-23207-Set-automaticcheckin-column-as-boolean-i.patch (text/plain), 1.84 KB, created by
Andrew Fuerste-Henry
on 2021-03-09 16:49:40 UTC
(
hide
)
Description:
Bug 23207: Set automatic_checkin column as boolean in Itemtype schema
Filename:
MIME Type:
Creator:
Andrew Fuerste-Henry
Created:
2021-03-09 16:49:40 UTC
Size:
1.84 KB
patch
obsolete
>From 6f508b480d1c7a5f07550b86a2d4818840ae5944 Mon Sep 17 00:00:00 2001 >From: Agustin Moyano <agustinmoyano@theke.io> >Date: Fri, 4 Dec 2020 18:47:31 -0300 >Subject: [PATCH] Bug 23207: Set automatic_checkin column as boolean in > Itemtype schema > >Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com> > >Signed-off-by: Hasina Akhter <HasinaA@pascolibraries.org> >--- > Koha/Schema/Result/Itemtype.pm | 13 +++++++++++-- > 1 file changed, 11 insertions(+), 2 deletions(-) > >diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm >index 266f19ee0f..c3d0deae15 100644 >--- a/Koha/Schema/Result/Itemtype.pm >+++ b/Koha/Schema/Result/Itemtype.pm >@@ -167,6 +167,12 @@ Hide the item type from the search options in OPAC > > Group this item type with others with the same value on OPAC search options > >+=head2 automatic_checkin >+ >+ data_type: 'tinyint' >+ default_value: 0 >+ is_nullable: 0 >+ > =cut > > __PACKAGE__->add_columns( >@@ -211,6 +217,8 @@ __PACKAGE__->add_columns( > { data_type => "tinyint", default_value => 0, is_nullable => 0 }, > "searchcategory", > { data_type => "varchar", is_nullable => 1, size => 80 }, >+ "automatic_checkin", >+ { data_type => "tinyint", default_value => 0, is_nullable => 0 }, > ); > > =head1 PRIMARY KEY >@@ -323,12 +331,13 @@ __PACKAGE__->has_many( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iByLvz6PwhMByZC9bJb8ig >+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-12-04 15:29:28 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nvjU4T+cepfbUA2tvXKKSA > > __PACKAGE__->add_columns( > '+rentalcharge_hourly_calendar' => { is_boolean => 1 }, > '+rentalcharge_daily_calendar' => { is_boolean => 1 }, >+ '+automatic_checkin' => { is_boolean => 1 }, > ); > > # Use the ItemtypeLocalization view to create the join on localization >-- >2.11.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 23207
:
114212
|
114213
|
114214
|
114215
|
117970
|
117971
|
117972
|
117973
|
117984
|
117985
|
117986
|
117987
|
117991
|
117992
|
117993
|
117994
|
119726
|
119727
|
119728
|
119729
|
119730
|
119966
|
119967
|
119973
|
119985
|
119999
|
120000