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

Evergreen Git git at git.evergreen-ils.org
Mon Feb 13 12:10:31 EST 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, master has been updated
       via  f7215da5476e8fd73f5a2136ecde39e721c1000f (commit)
      from  db43488828988ff1a0b7a8b951b5c0675a6d19f0 (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 f7215da5476e8fd73f5a2136ecde39e721c1000f
Author: Kyle Huckins <khuckins at catalystdevworks.com>
Date:   Wed Oct 5 09:08:27 2016 -0700

    LP#1528919: Alphabetise non-catalogued item types
    
    Use an orderBy expression on the lists of noncat types
    on the patron checkout page and inhouse-use page.
    
    Signed-off-by: Kyle Huckins <khuckins at catalystdevworks.com>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/templates/staff/circ/in_house_use/index.tt2 b/Open-ILS/src/templates/staff/circ/in_house_use/index.tt2
index 184212e..34b7ef0 100644
--- a/Open-ILS/src/templates/staff/circ/in_house_use/index.tt2
+++ b/Open-ILS/src/templates/staff/circ/in_house_use/index.tt2
@@ -45,7 +45,7 @@
             </li>
             <li class="divider"></li>
             <li><a href
-              ng-repeat='type in nonCatTypes'
+              ng-repeat="type in nonCatTypes | orderBy:'name()'"
               ng-click="args.noncat_type=type.id()">{{type.name()}}</a>
             </li>
           </ul>
diff --git a/Open-ILS/src/templates/staff/circ/patron/t_checkout.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_checkout.tt2
index 8618419..ab12816 100644
--- a/Open-ILS/src/templates/staff/circ/patron/t_checkout.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/t_checkout.tt2
@@ -18,7 +18,7 @@
             </li>
             <li class="divider"></li>
             <li>
-              <a href ng-repeat='type in nonCatTypes'
+              <a href ng-repeat="type in nonCatTypes | orderBy:'name()'"
                ng-click="checkoutArgs.noncat_type=type.id()">{{type.name()}}</a>
             </li>
           </ul>

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

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


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list