From 0606ec4315aac2c7106f67d3996dc020e8646b18 Mon Sep 17 00:00:00 2001 From: Thomas Berezansky Date: Mon, 25 Jul 2011 15:58:40 -0400 Subject: [PATCH] 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 Signed-off-by: Mike Rylander --- Open-ILS/web/opac/skin/default/js/myopac.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/opac/skin/default/js/myopac.js b/Open-ILS/web/opac/skin/default/js/myopac.js index 12fbaf1828..8e5c079ac5 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) -- 2.43.2