To have CLIA number on Box 23, you need to add “BOX 23. Prior Authorization No.” on “Misc Billing Options for HCFA-1500” form under Patient/Client-> Visit forms
In general instructions from the manual & a review of the gen_hcfa_1500 file will give the user a good idea of what goes where.
Misc Billing Options had not been completely updated for CMS 1500 02-12 as explained here & here, in which case there is no choice but to ask for help.
I don’t really understand billing to that level. I am investigating at this point. What I do know is that when the x12 is generated this information is missing .
I have followed the trail to line 1061 of the Claim.class.php file.
I have set a value in globals to hold the CLIA number. I am going to replace
This:
function priorAuth() {
return x12clean(trim($this->billing_options[‘prior_auth_number’]));
}
with this:
(add this at line 255 $this->CLIA_option = $GLOBALS[‘prior_authorization_no’]
function priorAuth() {
return x12clean(trim($this->CLIA_option));
}
It appears that there is no provision to grab the CLIA # from Facilities in the gen_hcfa_1500.inc.php. Line 452 only will take the number entered in Misc Billing Options, Box 23.
There will be times when Box 23 will be needed for other prior authorizations. Some insurers will not pay for a service unless they grant permission before the visit.
To allow for greater flexibility, would suggest that a statement be placed in gen_hcfa_1500 file to grab CLIA # from Facilities, if Box 23 in Misc Billing Options is empty. If there is a prior authorization number in Misc Billing Options, that number would populate Box 23 on the CMS 1500 form instead of the CLIA #.
There appears to be a provision for the CLIA # in the gen_x12_837 file.
If cliaCode() is determined by Line 641, what changes are necessary to get the CLIA # to appear in the 837P?
Just when does the Clia number need to be there. If there are labs or when there is no prior authorization. I just need to know when to throw the switch. I would think it would be WITH LABS and NO PRIOR AUTH. How do I tell if labs are present?
I can fix it I just need to know what triggers the event.
It would be rather complicated to check CPT/HCPCS automatically for lab studies.
For offices which have their own lab, it would be safe to assume studies are ordered routinely.
Probably easier to have CLIA # go into Box 23 of the CMS 1500 all of the time for those offices, provided that there is no entry in Misc Billing Options for other authorization numbers. No prior authorization should trigger CLIA # in Box 23.
The problem arises if both CLIA & prior authorization are needed for the same claim. In which case, the office would need to submit 2 paper claims for the same service. Sherwin will have to ask Demi how often this happens.
Like Box 17 life would be simpler to send the 837P because if CLIA # is in Facilities, it should appear in the e-claim independently of prior authorizations. If prior authorization is needed as well, it has its own section in Loop 2300.
I ended up making a global entry and pulling that global entry. I did not try the box in the facility form. I just saw it yesterday. It could be pulled from there as well.
After reading what fsgl wrote there may need to be a checkbox option to include always.
As for the pain practice that this arose with, they have labs all the time so the CLIA number needs to be on every claim.
If the Pain Management Clinic must have CLIA all the time, it may be simpler to have it in Box 23 as a default. See attachment.
There is enough room for the Prior Authorization number on the next line, should both be required. Demi will have to ask the insurers if this is kosher with them before the code change.
Didn’t test the spacing on a CMS 1500, so tweak it.
This way Demi only needs to enter the authorization number when necessary & no fooling about in Globals togling back & forth.
@teryhill I am back at this again and yes there are multiple facilities. I made a switch in the code this time to post the clia instead of the prior auth.
It is not so much as a problem but the way the biller would like to handle the claims. She wants the CLI number on every claim. She don’t want to have to go to the Prior Auth form form for every patient and enter it since for this practice it is always the same. It does not change.