From: Bill Erickson Date: Thu, 15 Nov 2018 15:28:30 +0000 (-0500) Subject: JBAS-2101 Payments on checked-in lost are not refundable X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=69b7c4f24e097193b47c91039b4c18362804ff39;p=working%2FEvergreen.git JBAS-2101 Payments on checked-in lost are not refundable Signed-off-by: Bill Erickson --- 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]); } }