Notifications
Clear all
Topic starter
Does anyone know a way to auto print patient instructions? Our providers would like to click the patient instructions button and have them auto print instead of going through the additional 5 clicks they currently have to. Any ideas? Thank you.
Posted : March 9, 2014 11:37 pm
You may be able to do a watcher pane function and when some obs term is set that indicates the handout is ready to print call your PRINTHANDOUT command.
if obsnow("PRINTME") = "Ready" then
PRINTHANDOUT (whatever goes here)
else
""
endif
Haven't tried it - no guarantees
Posted : March 10, 2014 7:44 am