[open-ils-commits] [GIT] Evergreen ILS branch rel_2_11 updated. d3b5caa02dacc9453c114109c29faa674bc573c3

Evergreen Git git at git.evergreen-ils.org
Mon Feb 13 12:10:32 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_11 has been updated
       via  d3b5caa02dacc9453c114109c29faa674bc573c3 (commit)
      from  d66d29de0053908703eaafd6271e519a6f8540ac (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 d3b5caa02dacc9453c114109c29faa674bc573c3
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 769d533..b0b833b 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