Bugzilla – Attachment 101465 Details for
Bug 21443
Add ability to exclude holidays when calculating rentals fees by time period
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21443: Update Schema [DO NOT PUSH]
Bug-21443-Update-Schema-DO-NOT-PUSH.patch (text/plain), 2.11 KB, created by
Katrin Fischer
on 2020-03-23 15:23:42 UTC
(
hide
)
Description:
Bug 21443: Update Schema [DO NOT PUSH]
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2020-03-23 15:23:42 UTC
Size:
2.11 KB
patch
obsolete
>From 165015ccdd3f00e7b25f2c3234432cb62d6ea028 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 9 Mar 2020 13:13:46 -0400 >Subject: [PATCH] Bug 21443: Update Schema [DO NOT PUSH] > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> > >Signed-off-by: Marti Fuerst <mfuerst@hmcpl.org> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > Koha/Schema/Result/Itemtype.pm | 20 ++++++++++++++++++-- > 1 file changed, 18 insertions(+), 2 deletions(-) > >diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm >index 073c527b7b..d9a740ff9d 100644 >--- a/Koha/Schema/Result/Itemtype.pm >+++ b/Koha/Schema/Result/Itemtype.pm >@@ -47,12 +47,24 @@ __PACKAGE__->table("itemtypes"); > is_nullable: 1 > size: [28,6] > >+=head2 rentalcharge_daily_calendar >+ >+ data_type: 'tinyint' >+ default_value: 1 >+ is_nullable: 0 >+ > =head2 rentalcharge_hourly > > data_type: 'decimal' > is_nullable: 1 > size: [28,6] > >+=head2 rentalcharge_hourly_calendar >+ >+ data_type: 'tinyint' >+ default_value: 1 >+ is_nullable: 0 >+ > =head2 defaultreplacecost > > data_type: 'decimal' >@@ -123,8 +135,12 @@ __PACKAGE__->add_columns( > { data_type => "decimal", is_nullable => 1, size => [28, 6] }, > "rentalcharge_daily", > { data_type => "decimal", is_nullable => 1, size => [28, 6] }, >+ "rentalcharge_daily_calendar", >+ { data_type => "tinyint", default_value => 1, is_nullable => 0 }, > "rentalcharge_hourly", > { data_type => "decimal", is_nullable => 1, size => [28, 6] }, >+ "rentalcharge_hourly_calendar", >+ { data_type => "tinyint", default_value => 1, is_nullable => 0 }, > "defaultreplacecost", > { data_type => "decimal", is_nullable => 1, size => [28, 6] }, > "processfee", >@@ -227,8 +243,8 @@ __PACKAGE__->has_many( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:48 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Qo6jabJSQGeYJ542ebSJfg >+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-09 17:13:18 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7ojvTzsDvdHPAJMwJrAZ7A > > # Use the ItemtypeLocalization view to create the join on localization > our $LANGUAGE; >-- >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 21443
:
100402
|
100403
|
100404
|
100405
|
100744
|
100745
|
100746
|
100747
|
100748
|
101428
|
101429
|
101430
|
101431
|
101458
|
101459
|
101460
|
101461
|
101462
|
101463
|
101464
| 101465 |
101466
|
101467
|
101468
|
101469
|
101631