I know this has to be something simple, but... ??
I have a radio button to set a document variable, RTCLENGTH
Following this is a button to do MEL_ADD_Order
{
MEL_Add_Order("S","Return to Clinic","RTC in 2 weeks","","","",RTCLENGTH,"","","","")
}
Since the Order Code is configured "Additional Info Required" to make sure this is completed (when someone adds the order manually) I wanted to be able to have a button (or a text entry field) to capture the additional info.
If I do this manually - "20 minute visit" - in that 7th field, all is fine. But, I want to be able to have the user make a checkbox/radio button to determine that extra info.
Is this possible?
Thanks.
Joe
You would need to have your variable like this.
{
MEL_Add_Order(“S”,”Return to Clinic”,”RTC in 2 weeks”,””,””,””,DOCUMENT.RTCLENGTH,””,””,””,””)
}
That should fix your issue.