Hello Chug,
Does anyone know if it's possible to setup a VFE form with an action button that will print a CareNote handout? We're really missing the ExitCare handouts.
Thanks,
Mike
First you need to build the care note to the handout template, then create the action button in your form. This will count toward MU Stage 2 Patient Education Handouts.
Code that goes in the action button
First line specifies the path and the name of the handout in the handout template.
Second line docu.ments the title of the handout in the chart note
PRINTMUHANDOUT("Handouts\Enterprise\ADC\Endo\Diabetic Foot Care")
EducationTx("Diabetic Foot Care handout provided.")
Call function to add on the right side
{fn PrintMUHandout(hand){
PRINTHANDOUT(hand)
ADD_MUACTIVITY_LOG(12,find("_UserSearch","loginname","RealName",Document.provider),"Handout Printed: " + hand)
}
}
{fn EducationTx(name){
DOCUMENT.MU_ED_PRINTED = DOCUMENT.MU_ED_PRINTED + name + hret
}
}
{!DOCUMENT.MU_ED_PRINTED}
Email me with questions or concerns at [email protected]
Very nice response. That is the advice that should appear in these forums. Thank you for great job!