[Koha-patches] [PATCH 06/11] (BUG #4810) parcel.pl: Fix a bug with applying a filter on pending orders displaying

Henri-Damien LAURENT henridamien.laurent at biblibre.com
Thu Jun 24 19:26:16 CEST 2010


From: Alex Arnaud <alex.arnaud at biblibre.com>

When we apply a filter and click on "Click here to show x items" link, there are duplicates orders which are display.
---
 .../prog/en/modules/acqui/parcel.tmpl              |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tmpl
index 93422c2..9f7f11e 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tmpl
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tmpl
@@ -31,6 +31,7 @@
     // Collapse pending items table
     function pendingCollapse() {
 	$("#pendingcollapserow").remove();
+    $("#pendingt tr").show();
 	$("#pendingt tbody.filterclass tr:gt(" + (rowsToCollapse-1) + ")").hide();
 	$("#pendingt").before("<p id=\"pendingcollapserow\">" + _("Only the first ")  + rowsToCollapse +  _(" items are displayed.") + "<a href=\"javascript:pendingExpand();\">" + _("Click here to show all ")  + rowCountPending + _(" items") + "<\/a>.<\/p>");
 
@@ -40,6 +41,7 @@
     function pendingExpand() {
 	$("#pendingcollapserow").remove();
 	$("#pendingt tr").show();
+    $("#pendingt tbody.filterclass tr.orderfound").remove();
 	$("#pendingt").before("<p id=\"pendingcollapserow\">" + rowCountPending + _(" items are displayed.") + "<a href=\"javascript:pendingCollapse();\">" + _("Click here to show only the first ") + rowsToCollapse + _(" items") + "<\/a>.<\/p>");
     }
 
@@ -114,7 +116,7 @@
     function clearFilters() {
 	$("#nothingfoundrow").remove();
         $("#pendingt tbody.filterclass tr").show();
-        $("#pendingt tbody.filterclass tr.orderfound").remove();
+        //$("#pendingt tbody.filterclass tr.orderfound").remove();
 	pendingExpand();
     }
 
-- 
1.7.0.4



More information about the Koha-patches mailing list