[open-ils-commits] [GIT] Evergreen ILS branch master updated. e8f247f1319d7cef8ff1b7bb93d61669c6cf8749
Evergreen Git
git at git.evergreen-ils.org
Mon Apr 8 16:13:50 EDT 2019
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 e8f247f1319d7cef8ff1b7bb93d61669c6cf8749 (commit)
from f0572477da5b57f64dbf16d03578d853ffe932a7 (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 e8f247f1319d7cef8ff1b7bb93d61669c6cf8749
Author: Jane Sandberg <sandbej at linnbenton.edu>
Date: Sun May 20 09:00:48 2018 -0700
LP1744386: Alphabetize stat cats in volcopy attr editor
To test:
1. Go to the volume copy editor. Confirm that the stat
cats do not display in order of owning library or stat cat
name.
2. Apply this commit.
3. Go to the volume copy editor. Confirm that the stat
cats now display in alphabetical order by owning library,
then stat cat name.
Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>
Signed-off-by: Jason Etheridge <jason at EquinoxInitiative.org>
diff --git a/Open-ILS/src/templates/staff/cat/volcopy/t_attr_edit.tt2 b/Open-ILS/src/templates/staff/cat/volcopy/t_attr_edit.tt2
index 3628a9ed1f..580ec61585 100644
--- a/Open-ILS/src/templates/staff/cat/volcopy/t_attr_edit.tt2
+++ b/Open-ILS/src/templates/staff/cat/volcopy/t_attr_edit.tt2
@@ -510,7 +510,7 @@
<div ng-if="hasMulti()"> </div>
</li>
- <li ng-repeat="sc in statcats" ng-if="statcat_visible(sc.owner().id())">
+ <li ng-repeat="sc in statcats | orderBy:['owner().name()','name()']" ng-if="statcat_visible(sc.owner().id())">
<div class="bg-info"><label>{{sc.owner().name() }} : {{ sc.name()}}</label></div>
<div ng-class="{'bg-success': working.statcats[sc.id()] !== undefined}">
<select class="form-control" ng-disabled="!defaults.statcats"
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/staff/cat/volcopy/t_attr_edit.tt2 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list