Happy Thursday!
Anyone have a way to remind providers to put in charges if they forgot? (before they sign it without them!)
Any ideas are appreciated!
Rebecca B.
You could try a page close handler, not sure which versions though work on, has anyone tested in 12?
All I have is to add a label to a form, so I have a form called Billing that goes in office visit encounters, the code below is in an action button that essentially adds orders and then adds the label by removing the form, then adding it back with the label, pretty simple
{fn MarkBillingDone(){
REMOVE_FORM_COMP(
"Billing")
ADD_FORM_COMP(
"Enterprise\ProCare\Utility", "Billing", "BEFORE_CURRENT", "OPEN", "DONE")
return
""
}}
gibsonmi said:
You could try a page close handler, not sure which versions though work on, has anyone tested in 12?
All I have is to add a label to a form, so I have a form called Billing that goes in office visit encounters, the code below is in an action button that essentially adds orders and then adds the label by removing the form, then adding it back with the label, pretty simple
{fn MarkBillingDone(){
REMOVE_FORM_COMP(
"Billing")
ADD_FORM_COMP(
"Enterprise\ProCare\Utility", "Billing", "BEFORE_CURRENT", "OPEN", "DONE")
return
""
}}
Mike are you guys doing charges through the EMR (Superbill)? We are just trying to figure out how to handle services that were not administered (patient left, got sick etc..) however were still completed in EMR.
One idea we had was to have an order for the Service and then one for the Administration. However that could really clog up the Orders Module. I was just curious if you guys have an electronic Superbill or something along those lines.
Thanks
Dave