From 69b7c4f24e097193b47c91039b4c18362804ff39 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 15 Nov 2018 10:28:30 -0500 Subject: [PATCH] JBAS-2101 Payments on checked-in lost are not refundable Signed-off-by: Bill Erickson --- Open-ILS/xul/staff_client/server/patron/bill2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/patron/bill2.js b/Open-ILS/xul/staff_client/server/patron/bill2.js index 685868d318..f2ca8e8c0c 100644 --- a/Open-ILS/xul/staff_client/server/patron/bill2.js +++ b/Open-ILS/xul/staff_client/server/patron/bill2.js @@ -276,7 +276,7 @@ function handle_lost_payment_dialog(payment_blob) { var circ = row_params.row.my.circ; if (!circ) return; if (circ.id() == xact[0]) { - if (circ.stop_fines() == 'LOST') { + if (circ.stop_fines() == 'LOST' && !circ.checkin_time()) { lostpaid_xacts.push(xact[0]); } } -- 2.11.0