From 29b8d9a82aff71f45e6ed36d7e37da939a413c92 Mon Sep 17 00:00:00 2001 From: phasefx Date: Wed, 21 Dec 2005 01:55:04 +0000 Subject: [PATCH] fix bill_payment_applied observer for real this time git-svn-id: svn://svn.open-ils.org/ILS/trunk@2492 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/patron/bills.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Open-ILS/xul/staff_client/server/patron/bills.js b/Open-ILS/xul/staff_client/server/patron/bills.js index 8df4d92c25..a6f0115fe8 100644 --- a/Open-ILS/xul/staff_client/server/patron/bills.js +++ b/Open-ILS/xul/staff_client/server/patron/bills.js @@ -277,6 +277,7 @@ patron.bills.prototype = { obj.controller.view.bill_payment_amount.value = util.money.cents_as_dollars( total_applied ); } obj.controller.view.bill_payment_applied.value = util.money.cents_as_dollars( total_applied ); + obj.controller.view.bill_payment_applied.setAttribute('value', obj.controller.view.bill_payment_applied.value ) obj.controller.view.bill_credit_amount.value = ''; if (total_payment > total_applied ) { obj.controller.view.bill_change_amount.value = util.money.cents_as_dollars( total_payment - total_applied); -- 2.43.2