From 0d6c17210b303b337cb75485e1a3e421c556cff1 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 --- 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.11.0