From 5f165d5f54736a4c9413c1ffbbc1902294e42fba Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 8 Apr 2015 16:21:15 +0200 Subject: [PATCH] Bug 9139: New subscription form - Does not check form on the first page The vendor and Record input try to sent the form if the focus is on the inputs (normal behavior). But the form is on 2 pages, and the popup message ask you to fill info on the second page when you are on the first one. This does not make sense. This patch suggests to launch search when the enter key is press on these inputs. Test plan: 1/ Create a new subscription 2/ Put the focus in the Vendor input and press enter: the vendor search popup should appear 3/ Put the focus in the Record input and press enter: the record search popup should appear --- .../prog/en/modules/serials/subscription-add.tt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt index 8401968..ae58018 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt @@ -374,6 +374,18 @@ function show_page_2() { $(document).ready(function() { + $("#aqbooksellerid").on('keypress', function(e) { + if (e.keyCode == 13) { + e.preventDefault(); + FindAcqui(); + } + }); + $("#biblionumber").on('keypress', function(e) { + if (e.keyCode == 13) { + e.preventDefault(); + Plugin(); + } + }); $("select#frequency").change(function(){ patternneedtobetested = 1; $("input[name='enddate']").val(''); @@ -479,7 +491,7 @@ $(document).ready(function() { [% END %]
  • - () Search for a vendor + () Search for a vendor
  • -- 2.1.0