Bugzilla – Attachment 64154 Details for
Bug 18752
Automatic item modifications by age should allow 'blank' values
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18752 - Automatic item modifications by age should allow 'blank' values
Bug-18752---Automatic-item-modifications-by-age-sh.patch (text/plain), 4.21 KB, created by
Nick Clemens (kidclamp)
on 2017-06-09 15:32:22 UTC
(
hide
)
Description:
Bug 18752 - Automatic item modifications by age should allow 'blank' values
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2017-06-09 15:32:22 UTC
Size:
4.21 KB
patch
obsolete
>From 2d903b562189537cd0024248ae44b663ce60235a Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Thu, 8 Jun 2017 15:19:22 +0000 >Subject: [PATCH] Bug 18752 - Automatic item modifications by age should allow > 'blank' values > >This patch modifies the automatic item modification by age template to >correct errors in form validation: > >- Age in days should not be required >- A value should not be required in substitutions. > >To test, apply the patch and clear your browser cache if necessary. > >- Go to Tools -> Automatic item modification by age. >- Confirm that when editing or creating a rule the only required field > is the substitutions field name. > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > .../en/modules/tools/automatic_item_modification_by_age.tt | 12 +++++------- > .../prog/js/automatic_item_modification_by_age.js | 1 - > 2 files changed, 5 insertions(+), 8 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/automatic_item_modification_by_age.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/automatic_item_modification_by_age.tt >index 946ad3a..44aa3ff 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/automatic_item_modification_by_age.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/automatic_item_modification_by_age.tt >@@ -85,8 +85,7 @@ > <input type="hidden" name="unique_id" value="[% loop.count %]" /> <!-- FIXME on update, the unique_id should be filled --> > <div class="age"> > <h5>Age in days</h5> >- <input class="age" required="required" type="number" value="[% rule.age %]" name="age_[% id %]" /> >- <span class="required">Required</span> >+ <input class="age" type="number" value="[% rule.age %]" name="age_[% id %]" /> > </div> > <div class="blocks"> > <h5>Conditions</h5> >@@ -124,10 +123,10 @@ > [% END %] > </select> > = >- <input class="required" required="required" type="text" value="[% substitution.value %]" name="substitution_value_[% id %]" /> >+ <input type="text" value="[% substitution.value %]" name="substitution_value_[% id %]" /> > <a class="add_block" href="#"><i class="fa fa-plus"></i> Add a substitution</a> > <a class="remove_block" href="#"><i class="fa fa-trash"></i> Remove substitution</a> >- <span class="required">Required</span> >+ <span class="required">A field name is required</span> > </div> > [% END %] > </div> >@@ -148,7 +147,6 @@ > <div class="age"> > <h5>Age in days</h5> > <input class="age" type="number" value="" name="age" /> >- <span class="required">Required</span> > </div> > <div class="blocks"> > <h5>Conditions</h5> >@@ -175,10 +173,10 @@ > [% END %] > </select> > = >- <input class="required" required="required" type="text" value="" name="substitution_value" /> >+ <input type="text" value="" name="substitution_value" /> > <a class="add_block" href="#"><i class="fa fa-plus"></i> Add a substitution</a> > <a class="remove_block" href="#"><i class="fa fa-trash"></i> Remove substitution</a> >- <span class="required">Required</span> >+ <span class="required">A field name is required</span> > </div> > </div> > </fieldset> >diff --git a/koha-tmpl/intranet-tmpl/prog/js/automatic_item_modification_by_age.js b/koha-tmpl/intranet-tmpl/prog/js/automatic_item_modification_by_age.js >index d14b55a..6c37d9b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/automatic_item_modification_by_age.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/automatic_item_modification_by_age.js >@@ -117,7 +117,6 @@ $(document).ready(function() { > }); > > jQuery.validator.addClassRules("age", { >- required: true, > digits: true > }); > >-- >2.1.4
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 18752
:
64108
|
64154
|
64270