From f7ded516d642afdef3e913ed31bfa83f2ba90835 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Thu, 14 Jul 2011 16:03:42 -0400 Subject: [PATCH] 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 --- Open-ILS/xul/staff_client/server/patron/bill2.js | 1 + 1 file changed, 1 insertion(+) 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); -- 2.43.2