[open-ils-commits] [GIT] Evergreen ILS branch master updated. 8defb7f475216294d9c1e1a9390f98c75608d4e3

Evergreen Git git at git.evergreen-ils.org
Thu Nov 17 20:17:52 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, master has been updated
       via  8defb7f475216294d9c1e1a9390f98c75608d4e3 (commit)
      from  f0de98b6b3b7aafc765da6ea384ea8edcb96ffd1 (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 8defb7f475216294d9c1e1a9390f98c75608d4e3
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 cc3ee09..810950d 100644
--- a/Open-ILS/src/templates/staff/circ/patron/index.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/index.tt2
@@ -107,7 +107,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