more internationalization and input validation project
[openemr.git] / library / sl_eob.inc.php
blob92b79a7777e2fa6d87b7154f67fd379f66256214
1 <?php
2 // Copyright (C) 2005-2009 Rod Roark <rod@sunsetsystems.com>
3 //
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");
12 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] !== 2) {
13 include_once("sql-ledger.inc");
14 include_once("invoice_summary.inc.php");
17 $chart_id_cash = 0;
18 $chart_id_ar = 0;
19 $chart_id_income = 0;
20 $services_id = 0;
22 function slInitialize() {
23 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] === 2) return;
25 global $chart_id_cash, $chart_id_ar, $chart_id_income, $services_id;
26 global $sl_cash_acc, $sl_ar_acc, $sl_income_acc, $sl_services_id;
28 SLConnect();
30 $chart_id_cash = SLQueryValue("select id from chart where accno = '$sl_cash_acc'");
31 if ($sl_err) die($sl_err);
32 if (! $chart_id_cash) die(xl("There is no COA entry for cash account ") . "'$sl_cash_acc'");
34 $chart_id_ar = SLQueryValue("select id from chart where accno = '$sl_ar_acc'");
35 if ($sl_err) die($sl_err);
36 if (! $chart_id_ar) die(xl("There is no COA entry for AR account ") . "'$sl_ar_acc'");
38 $chart_id_income = SLQueryValue("select id from chart where accno = '$sl_income_acc'");
39 if ($sl_err) die($sl_err);
40 if (! $chart_id_income) die(xl("There is no COA entry for income account ") . "'$sl_income_acc'");
42 $services_id = SLQueryValue("select id from parts where partnumber = '$sl_services_id'");
43 if ($sl_err) die($sl_err);
44 if (! $services_id) die(xl("There is no parts entry for services ID ") . "'$sl_services_id'");
47 function slTerminate() {
48 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] === 2) return;
49 SLClose();
52 // Try to figure out our invoice number (pid.encounter) from the
53 // claim ID and other stuff in the ERA. This should be straightforward
54 // except that some payers mangle the claim ID that we give them.
56 function slInvoiceNumber(&$out) {
57 $invnumber = $out['our_claim_id'];
58 $atmp = preg_split('/[ -]/', $invnumber);
59 $acount = count($atmp);
61 $pid = 0;
62 $encounter = 0;
63 if ($acount == 2) {
64 $pid = $atmp[0];
65 $encounter = $atmp[1];
67 else if ($acount == 3) {
68 $pid = $atmp[0];
69 $brow = sqlQuery("SELECT encounter FROM billing WHERE " .
70 "pid = '$pid' AND id = '" . $atmp[1] . "' AND activity = 1");
71 $encounter = $brow['encounter'];
73 else if ($acount == 1) {
74 $pres = sqlStatement("SELECT pid FROM patient_data WHERE " .
75 "lname LIKE '" . addslashes($out['patient_lname']) . "' AND " .
76 "fname LIKE '" . addslashes($out['patient_fname']) . "' " .
77 "ORDER BY pid DESC");
78 while ($prow = sqlFetchArray($pres)) {
79 if (strpos($invnumber, $prow['pid']) === 0) {
80 $pid = $prow['pid'];
81 $encounter = substr($invnumber, strlen($pid));
82 break;
87 if ($pid && $encounter) $invnumber = "$pid.$encounter";
88 return array($pid, $encounter, $invnumber);
91 // Insert a row into the acc_trans table.
92 // This should never be called if SQL-Ledger is not used.
94 function slAddTransaction($invid, $chartid, $amount, $date, $source, $memo, $insplan, $debug) {
95 global $sl_err;
96 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] === 2)
97 die("Internal error calling slAddTransaction()");
98 $date = fixDate($date);
99 $query = "INSERT INTO acc_trans ( " .
100 "trans_id, " .
101 "chart_id, " .
102 "amount, " .
103 "transdate, " .
104 "source, " .
105 "project_id, " .
106 "memo " .
107 ") VALUES ( " .
108 "$invid, " . // trans_id
109 "$chartid, " . // chart_id
110 "$amount, " . // amount
111 "'$date', " . // transdate
112 "'$source', " . // source
113 "$insplan, " . // project_id
114 "'$memo' " . // memo
115 ")";
116 if ($debug) {
117 echo $query . "<br>\n";
118 } else {
119 SLQuery($query);
120 if ($sl_err) die($sl_err);
124 // Insert a row into the invoice table.
125 // This should never be called if SQL-Ledger is not used.
127 function slAddLineItem($invid, $serialnumber, $amount, $units, $insplan, $description, $debug) {
128 global $sl_err, $services_id;
129 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] === 2)
130 die("Internal error calling slAddLineItem()");
131 $units = max(1, intval($units));
132 $price = $amount / $units;
133 $tmp = sprintf("%01.2f", $price);
134 if (abs($price - $tmp) < 0.000001) $price = $tmp;
135 $query = "INSERT INTO invoice ( " .
136 "trans_id, " .
137 "parts_id, " .
138 "description, " .
139 "qty, " .
140 "allocated, " .
141 "sellprice, " .
142 "fxsellprice, " .
143 "discount, " .
144 "unit, " .
145 "project_id, " .
146 "serialnumber " .
147 ") VALUES ( " .
148 "$invid, " . // trans_id
149 "$services_id, " . // parts_id
150 "'$description', " . // description
151 "$units, " . // qty
152 "0, " . // allocated
153 "$price, " . // sellprice
154 "$price, " . // fxsellprice
155 "0, " . // discount
156 "'', " . // unit
157 "$insplan, " . // project_id
158 "'$serialnumber'" . // serialnumber
159 ")";
160 if ($debug) {
161 echo $query . "<br>\n";
162 } else {
163 SLQuery($query);
164 if ($sl_err) die($sl_err);
168 // Update totals and payment date in the invoice header. Dollar amounts are
169 // stored as double precision floats so we have to be careful about rounding.
170 // This should never be called if SQL-Ledger is not used.
172 function slUpdateAR($invid, $amount, $paid = 0, $paydate = "", $debug) {
173 global $sl_err;
174 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] === 2)
175 die("Internal error calling slUpdateAR()");
176 $paydate = fixDate($paydate);
177 $query = "UPDATE ar SET amount = round(CAST (amount AS numeric) + $amount, 2), " .
178 "netamount = round(CAST (netamount AS numeric) + $amount, 2)";
179 if ($paid) $query .= ", paid = round(CAST (paid AS numeric) + $paid, 2), datepaid = '$paydate'";
180 $query .= " WHERE id = $invid";
181 if ($debug) {
182 echo $query . "<br>\n";
183 } else {
184 SLQuery($query);
185 if ($sl_err) die($sl_err);
189 // This gets a posting session ID. If the payer ID is not 0 and a matching
190 // session already exists, then its ID is returned. Otherwise a new session
191 // is created.
193 function arGetSession($payer_id, $reference, $check_date, $deposit_date='', $pay_total=0) {
194 if (empty($deposit_date)) $deposit_date = $check_date;
195 if ($payer_id) {
196 $row = sqlQuery("SELECT session_id FROM ar_session WHERE " .
197 "payer_id = '$payer_id' AND reference = '$reference' AND " .
198 "check_date = '$check_date' AND deposit_date = '$deposit_date' " .
199 "ORDER BY session_id DESC LIMIT 1");
200 if (!empty($row['session_id'])) return $row['session_id'];
202 return sqlInsert("INSERT INTO ar_session ( " .
203 "payer_id, user_id, reference, check_date, deposit_date, pay_total " .
204 ") VALUES ( " .
205 "'$payer_id', " .
206 "'" . $_SESSION['authUserID'] . "', " .
207 "'$reference', " .
208 "'$check_date', " .
209 "'$deposit_date', " .
210 "'$pay_total' " .
211 ")");
214 // Post a payment, SQL-Ledger style.
216 function slPostPayment($trans_id, $thispay, $thisdate, $thissrc, $code, $thisins, $debug) {
217 global $chart_id_cash, $chart_id_ar;
218 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] === 2)
219 die("Internal error calling slPostPayment()");
220 // Post a payment: add to ar, subtract from cash.
221 slAddTransaction($trans_id, $chart_id_ar , $thispay , $thisdate, $thissrc, $code, $thisins, $debug);
222 slAddTransaction($trans_id, $chart_id_cash, 0 - $thispay, $thisdate, $thissrc, $code, $thisins, $debug);
223 slUpdateAR($trans_id, 0, $thispay, $thisdate, $debug);
226 // Post a payment, new style.
228 function arPostPayment($patient_id, $encounter_id, $session_id, $amount, $code, $payer_type, $memo, $debug, $time='') {
229 $codeonly = $code;
230 $modifier = '';
231 $tmp = strpos($code, ':');
232 if ($tmp) {
233 $codeonly = substr($code, 0, $tmp);
234 $modifier = substr($code, $tmp+1);
236 if (empty($time)) $time = date('Y-m-d H:i:s');
237 $query = "INSERT INTO ar_activity ( " .
238 "pid, encounter, code, modifier, payer_type, post_time, post_user, " .
239 "session_id, memo, pay_amount " .
240 ") VALUES ( " .
241 "'$patient_id', " .
242 "'$encounter_id', " .
243 "'$codeonly', " .
244 "'$modifier', " .
245 "'$payer_type', " .
246 "'$time', " .
247 "'" . $_SESSION['authUserID'] . "', " .
248 "'$session_id', " .
249 "'$memo', " .
250 "'$amount' " .
251 ")";
252 sqlStatement($query);
253 return;
256 // Post a charge. This is called only from sl_eob_process.php where
257 // automated remittance processing can create a new service item.
258 // Here we add it as an unauthorized item to the billing table.
260 function arPostCharge($patient_id, $encounter_id, $session_id, $amount, $units, $thisdate, $code, $description, $debug) {
261 /*****************************************************************
262 // Select an existing billing item as a template.
263 $row= sqlQuery("SELECT * FROM billing WHERE " .
264 "pid = '$patient_id' AND encounter = '$encounter_id' AND " .
265 "code_type = 'CPT4' AND activity = 1 " .
266 "ORDER BY id DESC LIMIT 1");
267 $this_authorized = 0;
268 $this_provider = 0;
269 if (!empty($row)) {
270 $this_authorized = $row['authorized'];
271 $this_provider = $row['provider_id'];
273 *****************************************************************/
275 $codeonly = $code;
276 $modifier = '';
277 $tmp = strpos($code, ':');
278 if ($tmp) {
279 $codeonly = substr($code, 0, $tmp);
280 $modifier = substr($code, $tmp+1);
283 addBilling($encounter_id,
284 'CPT4',
285 $codeonly,
286 addslashes($description),
287 $patient_id,
290 $modifier,
291 $units,
292 $amount,
294 '');
297 // See comments above.
298 // In the SQL-Ledger case this service item is added only to SL and
299 // not to the billing table.
301 function slPostCharge($trans_id, $thisamt, $thisunits, $thisdate, $code, $thisins, $description, $debug) {
302 global $chart_id_income, $chart_id_ar;
303 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] === 2)
304 die("Internal error calling slPostCharge()");
305 // Post an adjustment: add negative invoice item, add to ar, subtract from income
306 slAddLineItem($trans_id, $code, $thisamt, $thisunits, $thisins, $description, $debug);
307 if ($thisamt) {
308 slAddTransaction($trans_id, $chart_id_ar , 0 - $thisamt, $thisdate, $description, $code, $thisins, $debug);
309 slAddTransaction($trans_id, $chart_id_income, $thisamt , $thisdate, $description, $code, $thisins, $debug);
310 slUpdateAR($trans_id, $thisamt, 0, '', $debug);
314 // Post an adjustment, SQL-Ledger style.
316 function slPostAdjustment($trans_id, $thisadj, $thisdate, $thissrc, $code, $thisins, $reason, $debug) {
317 global $chart_id_income, $chart_id_ar;
318 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] === 2)
319 die("Internal error calling slPostAdjustment()");
320 // Post an adjustment: add negative invoice item, add to ar, subtract from income
321 $adjdate = fixDate($thisdate);
322 $description = "Adjustment $adjdate $reason";
323 slAddLineItem($trans_id, $code, 0 - $thisadj, 1, $thisins, $description, $debug);
324 if ($thisadj) {
325 slAddTransaction($trans_id, $chart_id_ar, $thisadj, $thisdate, "InvAdj $thissrc", $code, $thisins, $debug);
326 slAddTransaction($trans_id, $chart_id_income, 0 - $thisadj, $thisdate, "InvAdj $thissrc", $code, $thisins, $debug);
327 slUpdateAR($trans_id, 0 - $thisadj, 0, '', $debug);
331 // Post an adjustment, new style.
333 function arPostAdjustment($patient_id, $encounter_id, $session_id, $amount, $code, $payer_type, $reason, $debug, $time='') {
334 $codeonly = $code;
335 $modifier = '';
336 $tmp = strpos($code, ':');
337 if ($tmp) {
338 $codeonly = substr($code, 0, $tmp);
339 $modifier = substr($code, $tmp+1);
341 if (empty($time)) $time = date('Y-m-d H:i:s');
342 $query = "INSERT INTO ar_activity ( " .
343 "pid, encounter, code, modifier, payer_type, post_user, post_time, " .
344 "session_id, memo, adj_amount " .
345 ") VALUES ( " .
346 "'$patient_id', " .
347 "'$encounter_id', " .
348 "'$codeonly', " .
349 "'$modifier', " .
350 "'$payer_type', " .
351 "'" . $_SESSION['authUserID'] . "', " .
352 "'$time', " .
353 "'$session_id', " .
354 "'$reason', " .
355 "'$amount' " .
356 ")";
357 sqlStatement($query);
358 return;
361 function arGetPayerID($patient_id, $date_of_service, $payer_type) {
362 if ($payer_type < 1 || $payer_type > 3) return 0;
363 $tmp = array(1 => 'primary', 2 => 'secondary', 3 => 'tertiary');
364 $value = $tmp[$payer_type];
365 $query = "SELECT provider FROM insurance_data WHERE " .
366 "pid = '$patient_id' AND type = '$value' AND date <= '$date_of_service' " .
367 "ORDER BY date DESC LIMIT 1";
368 $nprow = sqlQuery($query);
369 // echo "<!-- $query => '" . $nprow['provider'] . "' -->\n"; // debugging
370 if (empty($nprow)) return 0;
371 return $nprow['provider'];
374 // Make this invoice re-billable, new style.
376 function arSetupSecondary($patient_id, $encounter_id, $debug) {
378 // Determine the next insurance level to be billed.
379 $ferow = sqlQuery("SELECT date, last_level_billed " .
380 "FROM form_encounter WHERE " .
381 "pid = '$patient_id' AND encounter = '$encounter_id'");
382 $date_of_service = substr($ferow['date'], 0, 10);
383 $new_payer_type = 0 + $ferow['last_level_billed'];
384 if ($new_payer_type < 3 && !empty($ferow['last_level_billed']) || $new_payer_type == 0)
385 ++$new_payer_type;
387 $new_payer_id = arGetPayerID($patient_id, $date_of_service, $new_payer_type);
389 if ($new_payer_id) {
390 // Queue up the claim.
391 if (!$debug)
392 updateClaim(true, $patient_id, $encounter_id, $new_payer_id, $new_payer_type, 1, 5, '', 'hcfa');
394 else {
395 // Just reopen the claim.
396 if (!$debug)
397 updateClaim(true, $patient_id, $encounter_id, -1, -1, 1, 0, '');
400 return xl("Encounter ") . $encounter . xl(" is ready for re-billing.");
403 // Make this invoice re-billable, SQL-Ledger style.
405 function slSetupSecondary($invid, $debug) {
406 global $sl_err, $GLOBALS;
408 if ($GLOBALS['oer_config']['ws_accounting']['enabled'] === 2)
409 die("Internal error calling slSetupSecondary()");
411 $info_msg = '';
413 // Get some needed items from the SQL-Ledger invoice.
414 $arres = SLQuery("select invnumber, transdate, customer_id, employee_id, " .
415 "shipvia from ar where ar.id = $invid");
416 if ($sl_err) die($sl_err);
417 $arrow = SLGetRow($arres, 0);
418 if (! $arrow) die(xl('There is no match for invoice id') . ' = ' . "$trans_id.");
419 $customer_id = $arrow['customer_id'];
420 $date_of_service = $arrow['transdate'];
421 list($trash, $encounter) = explode(".", $arrow['invnumber']);
423 // Get the OpenEMR PID corresponding to the customer.
424 $pdrow = sqlQuery("SELECT patient_data.pid " .
425 "FROM integration_mapping, patient_data WHERE " .
426 "integration_mapping.foreign_id = $customer_id AND " .
427 "integration_mapping.foreign_table = 'customer' AND " .
428 "patient_data.id = integration_mapping.local_id");
429 $pid = $pdrow['pid'];
430 if (! $pid) die(xl("Cannot find patient from SQL-Ledger customer id") . " = $customer_id.");
432 // Determine the ID of the next insurance company (if any) to be billed.
433 $new_payer_id = -1;
434 $new_payer_type = -1;
435 $insdone = strtolower($arrow['shipvia']);
436 foreach (array('ins1' => 'primary', 'ins2' => 'secondary', 'ins3' => 'tertiary') as $key => $value) {
437 if (strpos($insdone, $key) === false) {
438 $nprow = sqlQuery("SELECT provider FROM insurance_data WHERE " .
439 "pid = '$pid' AND type = '$value' AND date <= '$date_of_service' " .
440 "ORDER BY date DESC LIMIT 1");
441 if (!empty($nprow['provider'])) {
442 $new_payer_id = $nprow['provider'];
443 $new_payer_type = substr($key, 3);
445 break;
449 // Find out if the encounter exists.
450 $ferow = sqlQuery("SELECT pid FROM form_encounter WHERE " .
451 "encounter = $encounter");
452 $encounter_pid = $ferow['pid'];
454 // If it exists, just update the billing items.
455 if ($encounter_pid) {
456 if ($encounter_pid != $pid)
457 die(xl("Expected form_encounter.pid to be ") . $pid . ', ' . xl(' but was ') . $encounter_pid);
459 // If there's a payer ID queue it up, otherwise just reopen it.
460 if ($new_payer_id > 0) {
461 // TBD: implement a default bill_process and target in config.php,
462 // it should not really be hard-coded here.
463 if (!$debug)
464 updateClaim(true, $pid, $encounter, $new_payer_id, $new_payer_type, 1, 5, '', 'hcfa');
465 } else {
466 if (!$debug)
467 updateClaim(true, $pid, $encounter, -1, -1, 1, 0, '');
470 $info_msg = xl("Encounter ") . $encounter . xl(" is ready for re-billing.");
471 return;
474 // If we get here then the encounter does not already exist. This should
475 // only happen if A/R was converted from an earlier system. In this case
476 // the encounter ID should be the date of service, and we will create the
477 // encounter.
479 // If it does not exist then it better be (or start with) a date.
480 if (! preg_match("/^20\d\d\d\d\d\d/", $encounter))
481 die(xl("Internal error: encounter '") . $encounter . xl("' should exist but does not."));
483 $employee_id = $arrow['employee_id'];
485 // Get the OpenEMR provider info corresponding to the SQL-Ledger salesman.
486 $drrow = sqlQuery("SELECT users.id, users.username, users.facility_id " .
487 "FROM integration_mapping, users WHERE " .
488 "integration_mapping.foreign_id = $employee_id AND " .
489 "integration_mapping.foreign_table = 'salesman' AND " .
490 "users.id = integration_mapping.local_id");
491 $provider_id = $drrow['id'];
492 if (! $provider_id) die(xl("Cannot find provider from SQL-Ledger employee = ") . $employee_id );
494 if (! $date_of_service) die(xl("Invoice has no date!"));
496 // Generate a new encounter number.
497 $conn = $GLOBALS['adodb']['db'];
498 $new_encounter = $conn->GenID("sequences");
500 // Create the "new encounter".
501 $encounter_id = 0;
502 $query = "INSERT INTO form_encounter ( " .
503 "date, reason, facility_id, pid, encounter, onset_date, provider_id " .
504 ") VALUES ( " .
505 "'$date_of_service', " .
506 "'" . xl('Imported from Accounting') . "', " .
507 "'" . addslashes($drrow['facility_id']) . "', " .
508 "$pid, " .
509 "$new_encounter, " .
510 "'$date_of_service', " .
511 "'$provider_id' " .
512 ")";
513 if ($debug) {
514 echo $query . "<br>\n";
515 echo xl("Call to addForm() goes here.<br>") . "\n";
516 } else {
517 $encounter_id = idSqlStatement($query);
518 if (! $encounter_id) die(xl("Insert failed: ") . $query);
519 addForm($new_encounter, xl("New Patient Encounter"), $encounter_id,
520 "newpatient", $pid, 1, $date_of_service);
521 $info_msg = xl("Encounter ") . $new_encounter . xl(" has been created. ");
524 // For each invoice line item with a billing code we will insert
525 // a billing row with payer_id set to -1. Order the line items
526 // chronologically so that each procedure code will be followed by
527 // its associated icd9 code.
529 $inres = SLQuery("SELECT * FROM invoice WHERE trans_id = $invid " .
530 "ORDER BY id");
531 if ($sl_err) die($sl_err);
533 // When nonzero, this will be the ID of a billing row that needs to
534 // have its justify field set.
535 $proc_ins_id = 0;
537 for ($irow = 0; $irow < SLRowCount($inres); ++$irow) {
538 $row = SLGetRow($inres, $irow);
539 // $amount = $row['sellprice'];
540 $amount = sprintf('%01.2f', $row['sellprice'] * $row['qty']);
542 // Extract the billing code.
543 $code = xl("Unknown");
544 if (preg_match("/([A-Za-z0-9]\d\d\S*)/", $row['serialnumber'], $matches)) {
545 $code = strtoupper($matches[1]);
547 else if (preg_match("/([A-Za-z0-9]\d\d\S*)/", $row['description'], $matches)) {
548 $code = strtoupper($matches[1]);
551 list($code, $modifier) = explode("-", $code);
553 // Set the billing code type and description.
554 $code_type = "";
555 $code_text = "";
557 foreach ($code_types as $key => $value) {
558 if (preg_match("/$key/", $row['serialnumber'])) {
559 $code_type = $key;
560 if ($value['fee']) {
561 $code_text = xl("Procedure") . " $code";
562 } else {
563 $code_text = xl("Diagnosis") . " $code";
564 if ($proc_ins_id) {
565 $query = "UPDATE billing SET justify = '$code' WHERE id = $proc_ins_id";
566 if ($debug) {
567 echo $query . "<br>\n";
568 } else {
569 sqlQuery($query);
571 $proc_ins_id = 0;
574 break;
578 // Skip adjustments.
579 if (! $code_type) continue;
581 // Insert the billing item. If this for a procedure code then save
582 // the row ID so that we can update the "justify" field with the ICD9
583 // code, which should come next in the loop.
585 $query = "INSERT INTO billing ( " .
586 "date, code_type, code, pid, provider_id, user, groupname, authorized, " .
587 "encounter, code_text, activity, payer_id, billed, bill_process, " .
588 "bill_date, modifier, units, fee, justify, target " .
589 ") VALUES ( " .
590 "NOW(), " .
591 "'$code_type', " .
592 "'$code', " .
593 "$pid, " .
594 "0, " . // was $provider_id but that is now in form_encounter
595 "'" . $_SESSION['authId'] . "', " .
596 "'" . $_SESSION['authProvider'] . "', " .
597 "1, " .
598 "$new_encounter, " .
599 "'$code_text', " .
600 "1, " .
601 "$new_payer_id, " .
602 ($new_payer_id > 0 ? "1, " : "0, ") .
603 ($new_payer_id > 0 ? "5, " : "0, ") .
604 ($new_payer_id > 0 ? "NOW(), " : "NULL, ") .
605 "'$modifier', " .
606 "0, " .
607 "$amount, " .
608 "'', " .
609 ($new_payer_id > 0 ? "'hcfa' " : "NULL ") .
610 ")";
611 if ($debug) {
612 echo $query . "<br>\n";
613 } else {
614 $proc_ins_id = idSqlStatement($query);
615 if ($code_type != "CPT4" && $code_type != "HCPCS")
616 $proc_ins_id = 0;
620 // Finally, change this invoice number to contain the new encounter number.
622 $new_invnumber = "$pid.$new_encounter";
623 $query = "UPDATE ar SET invnumber = '$new_invnumber' WHERE id = $invid";
624 if ($debug) {
625 echo $query . "<br>\n";
626 } else {
627 SLQuery($query);
628 if ($sl_err) die($sl_err);
629 $info_msg .= xl("This invoice number has been changed to ") . $new_invnumber;
632 return $info_msg;