From: Jason Etheridge Date: Thu, 14 Jul 2011 20:03:42 +0000 (-0400) Subject: fix bill ui display update bug where total owed and total checked were not updated... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f7ded516d642afdef3e913ed31bfa83f2ba90835;p=evergreen%2Fjoelewis.git fix bill ui display update bug where total owed and total checked were not updated if the total owed as paid off in full Signed-off-by: Jason Etheridge Signed-off-by: Mike Rylander --- diff --git a/Open-ILS/xul/staff_client/server/patron/bill2.js b/Open-ILS/xul/staff_client/server/patron/bill2.js index 50bc0041ea..490a94a9c6 100644 --- a/Open-ILS/xul/staff_client/server/patron/bill2.js +++ b/Open-ILS/xul/staff_client/server/patron/bill2.js @@ -180,6 +180,7 @@ function event_listeners() { try { $('apply_payment_btn').disabled = true; apply_payment(); + tally_all(); $('apply_payment_btn').disabled = false; } catch(E) { alert('Error in bill2.js, apply_payment_btn: ' + E);