Default Insurance Billing/Treating Dentist Problem

For users or potential users.
Post Reply
User avatar
drtech
Posts: 1649
Joined: Wed Jun 20, 2007 8:44 am
Location: Springfield, MO
Contact:

Default Insurance Billing/Treating Dentist Problem

Post by drtech » Wed Sep 04, 2013 8:01 pm

I am trying to setup proper billing for a PPO plan and discovered a problem with setting the treating dentist on the insurance claim. If you complete procedures in hygiene that are all listed as the Hyg secondary provider, the "treating dentist" portion on the claim does not seem to default to what you setup in the practice setup as the "Default Insurance Billing Dentist" option. I can't figure out where it gets the treating provider, but it seemed to be random. I want the treating dentist to all be our default provider (or the one specified as the default Insurance Dentist) if not specified otherwise on the procedure itself. Using OD v13.1.34.
David Fuchs
Dentist - Springfield, MO
Smile Dental http://www.887-smile.com

User avatar
jsalmon
Posts: 1555
Joined: Tue Nov 30, 2010 12:33 pm
Contact:

Re: Default Insurance Billing/Treating Dentist Problem

Post by jsalmon » Thu Sep 05, 2013 10:10 am

Definitely not random. Here's an example of how the treating provider is determined:
ContrAccount.cs > CreateClaim() around line 3037 in head.

Code: Select all

			ClaimCur.ProvTreat=Procedures.GetProcFromList(procsForPat,PIn.Long(table.Rows[gridAccount.SelectedIndices[0]]["ProcNum"].ToString())).ProvNum;
			for(int i=0;i<gridAccount.SelectedIndices.Length;i++){
				proc=Procedures.GetProcFromList(procsForPat,PIn.Long(table.Rows[gridAccount.SelectedIndices[i]]["ProcNum"].ToString()));
				if(!Providers.GetIsSec(proc.ProvNum)){//if not a hygienist
					ClaimCur.ProvTreat=proc.ProvNum;
				}
			}
			if(Providers.GetIsSec(ClaimCur.ProvTreat)){
				ClaimCur.ProvTreat=PatCur.PriProv;
				//OK if 0, because auto select first in list when open claim
			}
Let me know if you want that in layman's terms.
The best thing about a boolean is even if you are wrong, you are only off by a bit.

Jason Salmon
Open Dental Software
http://www.opendental.com

User avatar
drtech
Posts: 1649
Joined: Wed Jun 20, 2007 8:44 am
Location: Springfield, MO
Contact:

Re: Default Insurance Billing/Treating Dentist Problem

Post by drtech » Fri Sep 06, 2013 11:23 am

Ok, so it picks the primary provider. Shouldn't this pick the Billing Dentist instead? If not that should be added. I will soon make a request for a hook in for my plugin to add that option separately as the "Treating Dentist Default" if this is the way you intended it and not that way I was thinking...
David Fuchs
Dentist - Springfield, MO
Smile Dental http://www.887-smile.com

User avatar
jsalmon
Posts: 1555
Joined: Tue Nov 30, 2010 12:33 pm
Contact:

Re: Default Insurance Billing/Treating Dentist Problem

Post by jsalmon » Fri Sep 06, 2013 2:26 pm

No. You'll probably have to write your plugin. The reasoning is that some hospitals use the billing dentist as an "entity" and then the treating dentist is the doctor who actually performed the work. I believe claims will be rejected if you indicate that an "entity" performed a procedure.
The best thing about a boolean is even if you are wrong, you are only off by a bit.

Jason Salmon
Open Dental Software
http://www.opendental.com

User avatar
drtech
Posts: 1649
Joined: Wed Jun 20, 2007 8:44 am
Location: Springfield, MO
Contact:

Re: Default Insurance Billing/Treating Dentist Problem

Post by drtech » Fri Sep 06, 2013 7:26 pm

The point is though that if you have hygiene procedures (secondary providers listed on the procedures) with no doctor doing any actual work at that appt, it should default to the default doctor that you should be able to specify as the treating dentist (not necessarily whoever is set in the primary provider field).
David Fuchs
Dentist - Springfield, MO
Smile Dental http://www.887-smile.com

Post Reply