I made a custom order form using VFE. I created an action button called Abdominal Pain. When clicking this button it orders 4 labs and ties a diagnosis to them so all the provider has to do is sign.
When the provider clicks on the button a pop-up comes up stating "the diagnosis has expired"
Anyone having trouble with this? Or any ideas on how to fix it.
Thank you,
Katie Kopp
I have never seen the pop-up, but sounds like the diagnosis you are linking is either not "coded", is inactive, or missing from the patients problem list. Are you hard coding it in the MEL_ADD_ORDER()? If you post the code we can probably fix it
MEL_ADD_PROBLEM("dx of", "Abdominal pain", "ICD-789.0", str(._TODAYSDATE), "", "")
MEL_ADD_ORDER("T", "Lab", "CBC with differential", "", "", "", "", "", "", "", "")
MEL_ADD_ORDER("T", "Lab", "Comprehensive Panel", "", "", "", "", "", "", "", "")
MEL_ADD_ORDER("T", "Lab", "Lipase", "", "", "", "", "", "", "", "")
MEL_ADD_ORDER("T", "Lab", "Celiac Panel Pediatric", "", "", "", "", "", "", "", "")
Try "ICD-789.00" in the MEL_ADD_PROBLEM, also there are 8 fields available in that function too, so you may need to add two more arguments.
I fixed it. Thank you so much for all of your help.
What was the fix? Was it adding "ICD-789.00"?
Thanks,