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

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, rel_2_10 has been updated
       via  b1c97ea988e3b6b9a0baa207af57628ab0ab1b45 (commit)
      from  f4279e31bff0928c8c02caa87a9f53afbdfa3aa6 (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 b1c97ea988e3b6b9a0baa207af57628ab0ab1b45
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 7946ce5..99d7539 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 28bba44..8ad2e8e 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