From 3db3c984d14113ddc6d9926bcd2ee34fab8c3de5 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Sun, 4 May 2014 21:29:41 +0000 Subject: [PATCH] Bug 7180: (follow-up) restore ability to select bibs in middle of import batch This patch repairs the JavaScript that selectively removes unselected bibs from the form submission, fixing a problem where selecting bibs from the middle or end of the list would cause them to be ordered without the appropriate quantities, funds, and prices. Signed-off-by: Galen Charlton --- .../intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt index b2a2441017..5bf71e9e7a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt @@ -140,7 +140,7 @@ }); function disableUnchecked(form){ - $("div.biblio.unselected").each(function(){ + $("fieldset.biblio.unselected").each(function(){ $(this).remove(); }); return 1; -- 2.39.2