Hello - I am trying to do a MEL_ADD_ORDER: from a QuickText:
{MEL_ADD_ORDER("T","Quest Labs","COVID-19 PCR",,"ICD10-Z11.59,"Screening for Viral Illness",,,,"agonzalez",)}
What is coming back to me in the note is:
{MEL_ADD_ORDER("T","Quest Labs","COVID-19 PCR",,"ICD10-Z11.59,"Screening for Viral Illness",,,,"agonzalez",) <-EXPECTED RIGHT CURLY BRACE
I am confused as the second curly brace is there in the QuickText - anyone have ideas?
Thanks,
Brian
The closing quote for ICD10-Z11.59 is missing.
Thank you! I wish it said "missing quote" instead of curly bracket!
I continued to rework this - had gotten an error about a comma after comma so I removed the extras, and the QuickText is now:
{MEL_ADD_ORDER("T","EMRLink Labs","COVID-19 PCR","ICD10-Z11.59","Screening for Viral Illness","gonzalez")}
I am getting error -5, which is for invalid Diagnosis Code, but from what the "HELP" section says I think I entered that correctly. Any further help would be MUCH appreciated.
You need to include placeholders for the optional parameters. It's expecting the Dx code to be the 5th parameter, so if you don't have a modifier for the order, pass "". Try this:
{MEL_ADD_ORDER("T","EMRLink Labs","COVID-19 PCR","","ICD10-Z11.59","Screening for Viral Illness","","","","gonzalez")}
LHESS -
YOU ARE AMAZING! THANK YOU!
I originally had the commas for placeholders, but I didn't know they needed to have open-close quotes in them as well!
Again, amazing!
Brian