From 70a9652bb337cd3c8938f4bfcdf09e4927dde188 Mon Sep 17 00:00:00 2001 From: sunsetsystems Date: Sun, 14 Jan 2007 20:00:46 +0000 Subject: [PATCH] do not error out if any payments are already applied --- interface/billing/sl_eob_process.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/interface/billing/sl_eob_process.php b/interface/billing/sl_eob_process.php index 0701bcf55..7b1ca0dcc 100644 --- a/interface/billing/sl_eob_process.php +++ b/interface/billing/sl_eob_process.php @@ -196,6 +196,9 @@ } // Check for already-existing primary remittance activity. + // Removed this check because it was not allowing for copays manually + // entered into the invoice under a non-copay billing code. + /**** if ((sprintf("%.2f",$prev['chg']) != sprintf("%.2f",$prev['bal']) || $prev['adj'] != 0) && $primary) { @@ -203,6 +206,7 @@ "This service item already has primary payments and/or adjustments!"); $error = true; } + ****/ unset($codes[$svc['code']]); } -- 2.11.4.GIT