From: berick Date: Wed, 2 Mar 2011 19:13:41 +0000 (-0500) Subject: opac fines display is only interested in fines that have a balance, not necessarily... X-Git-Tag: kcls-grey-screen-prod1~51 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7336a630a4bb3e2116aae29ebfe3fbdb456cd5b9;p=evergreen%2Fequinox.git opac fines display is only interested in fines that have a balance, not necessarily those with a charge --- diff --git a/Open-ILS/web/opac/skin/kcls/js/myopac.js b/Open-ILS/web/opac/skin/kcls/js/myopac.js index 760f6a1415..987b040c47 100644 --- a/Open-ILS/web/opac/skin/kcls/js/myopac.js +++ b/Open-ILS/web/opac/skin/kcls/js/myopac.js @@ -1328,7 +1328,10 @@ function _myOPACShowFines(r) { balance = _finesFormatNumber(summary.balance_owed()); balance2 = _finesFormatNumber(summary.balance_owed()); - var req = new Request(FETCH_TRANSACTIONS, G.user.session, G.user.id() ); + var req = new Request( + 'open-ils.actor:open-ils.actor.user.transactions.have_balance.fleshed', + G.user.session, G.user.id() ); + req.callback(myOPACShowTransactions); req.send(); }