Bugzilla – Attachment 50132 Details for
Bug 15757
Hard coded due loan/renewal period of 21 days if no circ rule found in C4::Circulation::GetLoanLength
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 15757: Make issuelength default to null instead of 0
SIGNED-OFF-Bug-15757-Make-issuelength-default-to-n.patch (text/plain), 1.36 KB, created by
Bernardo Gonzalez Kriegel
on 2016-04-11 19:26:04 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 15757: Make issuelength default to null instead of 0
Filename:
MIME Type:
Creator:
Bernardo Gonzalez Kriegel
Created:
2016-04-11 19:26:04 UTC
Size:
1.36 KB
patch
obsolete
>From 9374cf42fa5ee74b576f2ae7b296712769663b6f Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 7 Apr 2016 10:13:43 +0100 >Subject: [PATCH] [SIGNED-OFF] Bug 15757: Make issuelength default to null > instead of 0 > >When editing circ rules, if the Loan period "issuelength" is not defined >(empty string), the default value was 0, not it's inserted in the DB as >NULL. > >Test plan: >1/ Create or edit a circ rule >2/ Do not fill the Loan period column >3/ Save >=> Without this patch, the value was 0 >=> With this patch it's now an empty string (in the DB it's set to NULL) > >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Works as described. >No errors >--- > admin/smart-rules.pl | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/admin/smart-rules.pl b/admin/smart-rules.pl >index da4e577..ade2993 100755 >--- a/admin/smart-rules.pl >+++ b/admin/smart-rules.pl >@@ -140,6 +140,7 @@ elsif ($op eq 'add') { > $maxonsiteissueqty =~ s/\s//g; > $maxonsiteissueqty = undef if $maxonsiteissueqty !~ /^\d+/; > my $issuelength = $input->param('issuelength'); >+ $issuelength = $issuelength eq q{} ? undef : $issuelength; > my $lengthunit = $input->param('lengthunit'); > my $hardduedate = $input->param('hardduedate') || undef; > $hardduedate = eval { dt_from_string( $input->param('hardduedate') ) } if ( $hardduedate ); >-- >1.9.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 15757
:
50013
|
50014
|
50015
|
50029
|
50131
|
50132
|
50133
|
50513
|
50514
|
50515
|
50516