[open-ils-commits] [GIT] Evergreen ILS branch rel_2_10 updated. e31994a7dd7620ae0c82d73daf719aad42b6d158
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, rel_2_10 has been updated
via e31994a7dd7620ae0c82d73daf719aad42b6d158 (commit)
from 14f10ee50d903ef1855a09852a2bc7f6efa1bc1e (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 e31994a7dd7620ae0c82d73daf719aad42b6d158
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