Has anyone edited the questionnaire on the HTML immunization form. We have specific flu related questions that we want on the questionnaire. Thanks.
I haven't added any new questions to ours yet, but I know how you do it. If you just need to add a new question to the bottom of the list you can paste the code below in a quick text and run in an encounter. Doesn't matter if this is done on a test patient or not, and you don't have to sign the document that it is done in:
{MEL_Add_Content("GE.IMM.MASTER.QUESTION.PEDIATRIC^115^new flu question goes here?^new flu question goes here?^^^15^^")
MEL_Add_Content("GE.IMM.MASTER.QUESTION.PEDIATRIC.115.NEGANSWER^^No^No^^^^^")
MEL_Add_Content("GE.IMM.MASTER.QUESTION.ADULT^214^new flu question goes here?^new flu question goes here?^^^14^^")
MEL_Add_Content("GE.IMM.MASTER.QUESTION.ADULT.214.NEGANSWER^^No^No^^^^^")}
A big number will show up as confirmation after this code is ran. You will want to replace "new flu question here?" with your actual question.
Notice that there is an ADULT and PEDIATRIC version. You don't have to run both of them if you only need the peds version and vice versa. This is based on the radio button at the top that toggles between the Pediatric Patient and Adult Patient. You can have different questions based on that.
Also, the NEGANSWER entry will be what you want it to select when the user clicks "All Negative" on the form. You can switch your answers to Yes or Don't Know, but I assume your negative will be No.
Is there a way to remove questions from the form?
Any updates on this?