Is there a way to change the settings on a superbill so that it only prints service orders? We do not bill from our clinic for test or referral orders. We bill those services through the hospital we are associated with. It would help prevent some confusion with our office staff if the superbills only printed the service orders that they then enter for billing from the clinic.
You can't change the settings, but if you have access to Crystal Reports you can modify the Superbill to only include service orders. I use something like this in the record selection to only include service orders and exclude snomed codes on the Superbills that I schedule on our reports server for daily batches:
{@DocDate} = currentdate and
{DOCUMENT.LOCOFCARE}={?Location} and
(({ORDERS.SDID} = 0.0) OR {ORDERS.XID} > 1000000000000000000.0) and
{ORDERS.ORDERTYPE} = "S" and
not ({ORDERS.CODE} like "*SCT*")