Notifications
Clear all
Topic starter
Can I "MEL add order" when a radio button questions is answered?
PMH Template, updating colorectal history. Patient confirms colonoscopy not performed by meets criteria and screening is recommeded. Can I also add a test order? My current chart note translation is:
{CFMT(OBSNOW("MUQ-NQF0034"), "", "Colorectal cancer screening guidelines reviewed. Screening recommended. ", "", "
")}
I've played around with the suppressive behavior window but my orders are being added in triple.
Thanks.
Posted : March 28, 2017 9:49 am
You need to control the execution of the order addition. Use something like:
if match(ORDERS_NEW(),"order name here") == 0 then
MEL_ADD_ORDER(....)
endif
This will prevent it from being added multiple times.
Posted : March 29, 2017 12:54 am