[open-ils-commits] [GIT] Evergreen ILS branch rel_2_10 updated. ce5f5a4e4d95f6da151aeedfcbad95dd80cc923d

Evergreen Git git at git.evergreen-ils.org
Thu Nov 17 20:22:59 EST 2016


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_10 has been updated
       via  ce5f5a4e4d95f6da151aeedfcbad95dd80cc923d (commit)
      from  fcb79fdd84ade0249f0d835a129eb3a328ebbeb5 (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 ce5f5a4e4d95f6da151aeedfcbad95dd80cc923d
Author: Kyle Huckins <khuckins at catalystdevworks.com>
Date:   Tue Oct 4 09:01:02 2016 -0700

    LP#1528916 Patron Holds Ready/Total
    
    Switch order or patron_stats().holds.ready and
    patron_stats().holds.total in t_summary and patron
    index.
    
    Signed-off-by: Kyle Huckins <khuckins at catalystdevworks.com>
    
     Changes to be committed:
    	modified:   Open-ILS/src/templates/staff/circ/patron/index.tt2
    	modified:   Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
    
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>

diff --git a/Open-ILS/src/templates/staff/circ/patron/index.tt2 b/Open-ILS/src/templates/staff/circ/patron/index.tt2
index 85b8866..d6931b1 100644
--- a/Open-ILS/src/templates/staff/circ/patron/index.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/index.tt2
@@ -104,7 +104,7 @@ angular.module('egCoreMod').run(['egStrings', function(s) {
         <a a-disabled="!patron()" href="./circ/patron/{{patron().id()}}/holds">
           [% l('Holds') %]
           <span ng-if="patron()">
-            (<span>{{patron_stats().holds.total}} / {{patron_stats().holds.ready}}</span>)
+            (<span>{{patron_stats().holds.ready}} / {{patron_stats().holds.total}}</span>)
           </span>
         </a>
       </li>
diff --git a/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
index 205a64a..83a5957 100644
--- a/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2
@@ -94,7 +94,7 @@
     <div class="row">
       <div class="col-md-5">[% l('Holds') %]</div>
       <div class="col-md-7">
-        {{patron_stats().holds.total}} / {{patron_stats().holds.ready}}
+        {{patron_stats().holds.ready}} / {{patron_stats().holds.total}}
       </div>
     </div>
     <div class="row patron-summary-divider">

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

Summary of changes:
 Open-ILS/src/templates/staff/circ/patron/index.tt2 |    2 +-
 .../src/templates/staff/circ/patron/t_summary.tt2  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list