We are an orthopedic group using speech recognition with a Physician Assistant/ Physician set-up. The providers have some patients who see multiple providers and sometimes the PA creates the note and other times the physician creates the note.
It looks like we are limited to previous observation by user/LOC/or previous observation.
Has anyone created code that would allow someone to bring in previous observation by document provider OR allow a user to select an observation from 2-3 times ago?
Thanks
I use the following:
{
if LAST_SIGNED_OBS_VALUEDATE("PHENCYCLIDIN") <> "" and DOCUMENT.RESPONSIBLE = "Adam Daniel" then
CFMT(LAST_SIGNED_OBS_VALUEDATE("PHENCYCLIDIN"), ",1", "Phencyclidine: ", ",1", "
") else "" endif
}
Obviously the LAST_SIGNED_OBS_VALUEDATE can be swapped out with what you prefer but as long as the provider is set at the beginning to the one you want the obs to display DOCUMENT.RESPONSIBLE will work.
Use we list_obs(ObsTerm) to get all the previous values and loop through them. It is them presented in useryesno dialog box. If they click no, loop continues, if they click yes the loop breaks