[open-ils-commits] [GIT] Evergreen ILS branch master updated. 9f81ef98dde94db549df75fded83810898e503c7
Evergreen Git
git at git.evergreen-ils.org
Mon Mar 14 15:34:14 EDT 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 9f81ef98dde94db549df75fded83810898e503c7 (commit)
from b8abd43bea4bc29cd1bc04f227683a52285f5d98 (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 9f81ef98dde94db549df75fded83810898e503c7
Author: Terran McCanna <tmccanna at georgialibraries.org>
Date: Wed Mar 2 16:52:13 2016 -0500
LP#1275118 Holds history displays canceled holds as active
Prior to this change, when a patron viewed holds history, canceled holds
displayed as active. From the patron point of view, the hold is no
longer active after it has been canceled.
Signed-off-by: Terran McCanna <tmccanna at georgialibraries.org>
Signed-off-by: Erica Rohlfs <erohlfs at esilibrary.com>
Signed-off-by: Kathy Lussier <klussier at masslnc.org>
diff --git a/Open-ILS/src/templates/opac/myopac/hold_history.tt2 b/Open-ILS/src/templates/opac/myopac/hold_history.tt2
index c549bf4..3b8abb9 100644
--- a/Open-ILS/src/templates/opac/myopac/hold_history.tt2
+++ b/Open-ILS/src/templates/opac/myopac/hold_history.tt2
@@ -102,7 +102,11 @@
END %]
</td>
<td>
- [% l(ahr.frozen == 'f' ? 'Active' : 'Suspended') %]
+ [% IF hold.hold.status == 6 %]
+ [% l('Canceled') %]
+ [% ELSE %]
+ [% l(ahr.frozen == 'f' ? 'Active' : 'Suspended') %]
+ [% END %]
</td>
<td>
[% IF ahr.fulfillment_time;
-----------------------------------------------------------------------
Summary of changes:
.../src/templates/opac/myopac/hold_history.tt2 | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list