[open-ils-commits] [GIT] Evergreen ILS branch rel_2_8 updated. 2e8b4fb33c5e5ac8c0488f5fc8926ec142d4dd0c

Evergreen Git git at git.evergreen-ils.org
Tue Aug 18 22:08:13 EDT 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_2_8 has been updated
       via  2e8b4fb33c5e5ac8c0488f5fc8926ec142d4dd0c (commit)
      from  d6425fe647b8fa9751a844989a0cf5c5753c93bc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 2e8b4fb33c5e5ac8c0488f5fc8926ec142d4dd0c
Author: Bill Erickson <berickxx at gmail.com>
Date:   Tue Jul 28 10:39:57 2015 -0400

    LP#1478997 Items out display sort overdues to top
    
    Sort overdue items to the top of the patron items out display in the XUL
    client, consistent with pre-2.5 behavior.
    
    Signed-off-by: Bill Erickson <berickxx at gmail.com>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/xul/staff_client/server/patron/items.js b/Open-ILS/xul/staff_client/server/patron/items.js
index 463f15e..42b9884 100644
--- a/Open-ILS/xul/staff_client/server/patron/items.js
+++ b/Open-ILS/xul/staff_client/server/patron/items.js
@@ -958,8 +958,8 @@ patron.items.prototype = {
                 return;
             }
 
-            obj.checkouts = obj.checkouts.concat(robj.out);
             obj.checkouts = obj.checkouts.concat(robj.overdue);
+            obj.checkouts = obj.checkouts.concat(robj.out);
 
             // open circs are added to list one or two based on config.
             // closed circs added to list 2 only if configured, otherwise

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/xul/staff_client/server/patron/items.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list