Tell OPAC to use checkin date, not stop_fines date
authorThomas Berezansky <tsbere@mvlc.org>
Mon, 25 Jul 2011 19:58:40 +0000 (15:58 -0400)
committerMike Rylander <mrylander@gmail.com>
Tue, 9 Aug 2011 17:31:36 +0000 (13:31 -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>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
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)