2 // Copyright (C) 2005-2009 Rod Roark <rod@sunsetsystems.com>
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 include_once("patient.inc");
10 include_once("billing.inc");
11 include_once("invoice_summary.inc.php");
19 // Try to figure out our invoice number (pid.encounter) from the
20 // claim ID and other stuff in the ERA. This should be straightforward
21 // except that some payers mangle the claim ID that we give them.
23 function slInvoiceNumber(&$out) {
24 $invnumber = $out['our_claim_id'];
25 $atmp = preg_split('/[ -]/', $invnumber);
26 $acount = count($atmp);
32 $encounter = $atmp[1];
34 else if ($acount == 3) {
36 $brow = sqlQuery("SELECT encounter FROM billing WHERE " .
37 "pid = '$pid' AND encounter = '" . $atmp[1] . "' AND activity = 1");
39 $encounter = $brow['encounter'];
41 else if ($acount == 1) {
42 $pres = sqlStatement("SELECT pid FROM patient_data WHERE " .
43 "lname LIKE '" . addslashes($out['patient_lname']) . "' AND " .
44 "fname LIKE '" . addslashes($out['patient_fname']) . "' " .
46 while ($prow = sqlFetchArray($pres)) {
47 if (strpos($invnumber, $prow['pid']) === 0) {
49 $encounter = substr($invnumber, strlen($pid));
55 if ($pid && $encounter) $invnumber = "$pid.$encounter";
56 return array($pid, $encounter, $invnumber);
59 // This gets a posting session ID. If the payer ID is not 0 and a matching
60 // session already exists, then its ID is returned. Otherwise a new session
63 function arGetSession($payer_id, $reference, $check_date, $deposit_date='', $pay_total=0) {
64 if (empty($deposit_date)) $deposit_date = $check_date;
66 $row = sqlQuery("SELECT session_id FROM ar_session WHERE " .
67 "payer_id = '$payer_id' AND reference = '$reference' AND " .
68 "check_date = '$check_date' AND deposit_date = '$deposit_date' " .
69 "ORDER BY session_id DESC LIMIT 1");
70 if (!empty($row['session_id'])) return $row['session_id'];
72 return sqlInsert("INSERT INTO ar_session ( " .
73 "payer_id, user_id, reference, check_date, deposit_date, pay_total " .
76 "'" . $_SESSION['authUserID'] . "', " .
83 //writing the check details to Session Table on ERA proxcessing
84 function arPostSession($payer_id,$check_number,$check_date,$pay_total,$post_to_date,$deposit_date,$debug) {
85 $query = "INSERT INTO ar_session( " .
86 "payer_id,user_id,closed,reference,check_date,pay_total,post_to_date,deposit_date,patient_id,payment_type,adjustment_code,payment_method " .
89 $_SESSION['authUserID']."," .
91 "'ePay - $check_number'," .
94 "'$post_to_date','$deposit_date', " .
95 "0,'insurance','insurance_payment','electronic'" .
98 echo $query . "<br>\n";
100 $sessionId=sqlInsert($query);
105 // Post a payment, new style.
107 function arPostPayment($patient_id, $encounter_id, $session_id, $amount, $code, $payer_type, $memo, $debug, $time='', $codetype='') {
110 $tmp = strpos($code, ':');
112 $codeonly = substr($code, 0, $tmp);
113 $modifier = substr($code, $tmp+
1);
115 if (empty($time)) $time = date('Y-m-d H:i:s');
118 $sequence_no = sqlQuery( "SELECT IFNULL(MAX(sequence_no),0) + 1 AS increment FROM ar_activity WHERE pid = ? AND encounter = ?", array($patient_id, $encounter_id));
119 $query = "INSERT INTO ar_activity ( " .
120 "pid, encounter, sequence_no, code_type, code, modifier, payer_type, post_time, post_user, " .
121 "session_id, memo, pay_amount " .
124 "'$encounter_id', " .
125 "'{$sequence_no['increment']}', " .
131 "'" . $_SESSION['authUserID'] . "', " .
136 sqlStatement($query);
141 // Post a charge. This is called only from sl_eob_process.php where
142 // automated remittance processing can create a new service item.
143 // Here we add it as an unauthorized item to the billing table.
145 function arPostCharge($patient_id, $encounter_id, $session_id, $amount, $units, $thisdate, $code, $description, $debug, $codetype='') {
146 /*****************************************************************
147 // Select an existing billing item as a template.
148 $row= sqlQuery("SELECT * FROM billing WHERE " .
149 "pid = '$patient_id' AND encounter = '$encounter_id' AND " .
150 "code_type = 'CPT4' AND activity = 1 " .
151 "ORDER BY id DESC LIMIT 1");
152 $this_authorized = 0;
155 $this_authorized = $row['authorized'];
156 $this_provider = $row['provider_id'];
158 *****************************************************************/
160 if (empty($codetype)) {
161 // default to CPT4 if empty, which is consistent with previous functionality.
166 $tmp = strpos($code, ':');
168 $codeonly = substr($code, 0, $tmp);
169 $modifier = substr($code, $tmp+
1);
172 addBilling($encounter_id,
186 // Post an adjustment, new style.
188 function arPostAdjustment($patient_id, $encounter_id, $session_id, $amount, $code, $payer_type, $reason, $debug, $time='', $codetype='') {
191 $tmp = strpos($code, ':');
193 $codeonly = substr($code, 0, $tmp);
194 $modifier = substr($code, $tmp+
1);
196 if (empty($time)) $time = date('Y-m-d H:i:s');
199 $sequence_no = sqlQuery( "SELECT IFNULL(MAX(sequence_no),0) + 1 AS increment FROM ar_activity WHERE pid = ? AND encounter = ?", array($patient_id, $encounter_id));
200 $query = "INSERT INTO ar_activity ( " .
201 "pid, encounter, sequence_no, code_type, code, modifier, payer_type, post_user, post_time, " .
202 "session_id, memo, adj_amount " .
205 "'$encounter_id', " .
206 "'{$sequence_no['increment']}', " .
211 "'" . $_SESSION['authUserID'] . "', " .
217 sqlStatement($query);
222 function arGetPayerID($patient_id, $date_of_service, $payer_type) {
223 if ($payer_type < 1 ||
$payer_type > 3) return 0;
224 $tmp = array(1 => 'primary', 2 => 'secondary', 3 => 'tertiary');
225 $value = $tmp[$payer_type];
226 $query = "SELECT provider FROM insurance_data WHERE " .
227 "pid = ? AND type = ? AND date <= ? " .
228 "ORDER BY date DESC LIMIT 1";
229 $nprow = sqlQuery($query, array($patient_id,$value,$date_of_service) );
230 if (empty($nprow)) return 0;
231 return $nprow['provider'];
234 // Make this invoice re-billable, new style.
236 function arSetupSecondary($patient_id, $encounter_id, $debug,$crossover=0) {
238 //if claim forwarded setting a new status
246 // Determine the next insurance level to be billed.
247 $ferow = sqlQuery("SELECT date, last_level_billed " .
248 "FROM form_encounter WHERE " .
249 "pid = '$patient_id' AND encounter = '$encounter_id'");
250 $date_of_service = substr($ferow['date'], 0, 10);
251 $new_payer_type = 0 +
$ferow['last_level_billed'];
252 if ($new_payer_type < 3 && !empty($ferow['last_level_billed']) ||
$new_payer_type == 0)
255 $new_payer_id = arGetPayerID($patient_id, $date_of_service, $new_payer_type);
258 // Queue up the claim.
260 updateClaim(true, $patient_id, $encounter_id, $new_payer_id, $new_payer_type,$status, 5, '', 'hcfa','',$crossover);
263 // Just reopen the claim.
265 updateClaim(true, $patient_id, $encounter_id, -1, -1, $status, 0, '','','',$crossover);
268 return xl("Encounter ") . $encounter . xl(" is ready for re-billing.");