[open-ils-commits] [GIT] Evergreen ILS branch master updated. 0606ec4315aac2c7106f67d3996dc020e8646b18
Evergreen Git
git at git.evergreen-ils.org
Tue Aug 9 13:35:39 EDT 2011
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 0606ec4315aac2c7106f67d3996dc020e8646b18 (commit)
from 581860cc0df2662f643bed90d099854a34f816cd (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 0606ec4315aac2c7106f67d3996dc020e8646b18
Author: Thomas Berezansky <tsbere at mvlc.org>
Date: Mon Jul 25 15:58:40 2011 -0400
Tell OPAC to use checkin date, not stop_fines date
The column is labeled "Date Returned", not "Date we stopped generating fines".
This does lead to "(fines accruing)" for an item that has hit max fines, or stopped fines for some other reason.
Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>
Signed-off-by: Mike Rylander <mrylander at gmail.com>
diff --git a/Open-ILS/web/opac/skin/default/js/myopac.js b/Open-ILS/web/opac/skin/default/js/myopac.js
index 12fbaf1..8e5c079 100644
--- a/Open-ILS/web/opac/skin/default/js/myopac.js
+++ b/Open-ILS/web/opac/skin/default/js/myopac.js
@@ -724,7 +724,7 @@ function myOPACShowCircTransaction(trans, record, circ) {
$n(row,'myopac_circ_trans_start').
appendChild(text(_trimTime(trans.xact_start())));
var due = _trimTime(circ.due_date());
- var checkin = _trimTime(circ.stop_fines_time());
+ var checkin = _trimTime(circ.checkin_time());
$n(row,'myopac_circ_trans_due').appendChild(text(due))
if(checkin)
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/web/opac/skin/default/js/myopac.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list