[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. b5f6ac257e04a11d90e65ccb6e9125521d54aad4

Evergreen Git git at git.evergreen-ils.org
Wed Jun 21 12:21:18 EDT 2017


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_12 has been updated
       via  b5f6ac257e04a11d90e65ccb6e9125521d54aad4 (commit)
      from  689ca7de885413bb1059a91b3ebe7415b310153f (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 b5f6ac257e04a11d90e65ccb6e9125521d54aad4
Author: Cesar Velez <cesar.velez at equinoxinitiative.org>
Date:   Thu Jun 15 15:56:48 2017 -0400

    LP#1665115-WebStaff add longoverdue items count to Items Out
    
    Longover due items should always, be reflected in total tally count
    Which is what displays in the ItemsOut tab and Patron summary area.
    
    Signed-off by: Cesar Velez <cesar.velez at equinoxinitiative.org>
    
    Signed-off-by: Jason Etheridge <jason at equinoxinitiative.org>
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>

diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js
index 02ab395..fe126d4 100644
--- a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js
+++ b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js
@@ -518,6 +518,8 @@ function($q , $timeout , $location , egCore,  egUser , $locale) {
                 stats.checkouts.out = Number(stats.checkouts.out);
                 stats.checkouts.total_out = 
                     stats.checkouts.out + stats.checkouts.overdue;
+                
+                stats.checkouts.total_out += Number(stats.checkouts.long_overdue);
 
                 if (!egCore.env.aous['circ.do_not_tally_claims_returned'])
                     stats.checkouts.total_out += stats.checkouts.claims_returned;

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

Summary of changes:
 .../web/js/ui/default/staff/circ/patron/app.js     |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list