From d3f9c77975637aa4ea3db3b33a55e9d0b2a607f2 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 27 Apr 2015 10:39:14 +0200 Subject: [PATCH] Bug 14060: Add OnClose event on missing datepicker The "suspend until" inputs (hold list on circ/circulation.pl and members/moremember.pl) were not set in the same way. The minDate option should be set for both (bug 10703 removed it for circ/circulation.pl). This patch reintroduces the option and add the OnClose event on both. --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 10 +++++++++- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 10 ++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index dbe3a4a..95aaf85 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -107,6 +107,14 @@ $(document).ready(function() { $("#onsite_checkout").click(function(){ toggle_onsite_checkout(); }); + + $("#suspend_until").datepicker({ + onClose: function(dateText, inst) { + validate_date(dateText, inst); + }, + minDate: 1, // require that hold suspended until date is after today + }); + }); //]]> @@ -949,7 +957,7 @@ No patron matched [% message | html %] [% IF AutoResumeSuspendedHolds %] - + Specify date on which to resume [% INCLUDE 'date-format.inc' %]: [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt index 72c1548..f89273f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -83,7 +83,13 @@ $(document).ready(function() { return confirm(_("Are you sure you want to replace the current patron image? This cannot be undone.")); });[% END %] - $("#suspend_until").datepicker({ minDate: 1 }); // require that hold suspended until date is after today + $("#suspend_until").datepicker({ + onClose: function(dateText, inst) { + validate_date(dateText, inst); + }, + minDate: 1, // require that hold suspended until date is after today + }); + $("#view_restrictions").on("click",function(){ $('#debarments-tab-link').click(); }); @@ -547,7 +553,7 @@ function validate1(date) { [% IF AutoResumeSuspendedHolds %] - + Specify date on which to resume [% INCLUDE 'date-format.inc' %]: [% END %] -- 2.8.1