From a5a86653daba28c2900da0b304f662e0b8e8bd86 Mon Sep 17 00:00:00 2001 From: erickson Date: Tue, 24 Jan 2006 22:28:06 +0000 Subject: [PATCH] now we show a warning if the transaction is a circ and the transaction is still open explaining that fines will continue to accrue git-svn-id: svn://svn.open-ils.org/ILS/trunk@2816 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/web/opac/skin/default/js/myopac.js | 4 ++++ .../skin/default/xml/myopac/myopac_fines.xml | 16 ++++++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Open-ILS/web/opac/skin/default/js/myopac.js b/Open-ILS/web/opac/skin/default/js/myopac.js index ed5198a61d..7c23f0c162 100644 --- a/Open-ILS/web/opac/skin/default/js/myopac.js +++ b/Open-ILS/web/opac/skin/default/js/myopac.js @@ -355,6 +355,10 @@ function myOPACShowTransactions(r) { var extra = ""; var type = trans.xact_type(); + if(type == 'circulation') { + unHideMe($('accrue_explanation')); + unHideMe($n(row, 'myopac_trans_balance_recur')); + } $n(row,'myopac_trans_type').appendChild(text(type)); if( type == "circulation" ) extra = record.title(); $n(row, 'myopac_trans_extra').appendChild(text(extra)); diff --git a/Open-ILS/web/opac/skin/default/xml/myopac/myopac_fines.xml b/Open-ILS/web/opac/skin/default/xml/myopac/myopac_fines.xml index ac5a63b8ee..78b2cbb5fa 100644 --- a/Open-ILS/web/opac/skin/default/xml/myopac/myopac_fines.xml +++ b/Open-ILS/web/opac/skin/default/xml/myopac/myopac_fines.xml @@ -27,6 +27,13 @@

+
+ Balances marked with a + * + will continue to accrue fines until the checked out item is returned. +
+ +
@@ -53,13 +60,18 @@ $ $ - $ + + * + $ + - + +
+ -- 2.43.2