From: Thomas Berezansky Date: Mon, 25 Jul 2011 19:58:40 +0000 (-0400) Subject: Tell OPAC to use checkin date, not stop_fines date X-Git-Tag: sprint4-merge-nov22~5276 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=0606ec4315aac2c7106f67d3996dc020e8646b18;p=working%2FEvergreen.git 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 --- 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)