Tell OPAC to use checkin date, not stop_fines date user/tsbere@mvlc.org/checkin_not_stop_fines
authorThomas Berezansky <tsbere@mvlc.org>
Mon, 25 Jul 2011 19:58:40 +0000 (15:58 -0400)
committerThomas Berezansky <tsbere@mvlc.org>
Mon, 25 Jul 2011 19:58:40 +0000 (15:58 -0400)
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@mvlc.org>
Open-ILS/web/opac/skin/default/js/myopac.js

index 12fbaf1..8e5c079 100644 (file)
@@ -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)