I need help editing the CCC HPI, particularly adding a template to the check boxes on the right hand side. I have no problem adding forms there but not sure how to have the check box represent text in the note. I looked at the Rheumatology specialty and there is code for certain templates: ccc_Rheum_HPI_exec("Vasculitis F/U Template^ccc_Rheum_Vasculitis_FU()^") I want to do the same with GI HPI, but where do I find the "ccc_GI"? Thanks.
Did you try replicating the functions into the GI TFE file.
Add the below line to the top of the "CCCQE-User-Edit-HPI-GI-TFE.txt" file
fn ccc_GI_Vasculitis_FU(){"Reviewed recent labs and diagnostics, current medications, and treatment regimen. Interval history obtained and since the last visit: "}
Then replace/add one of your template lines with the below:
ccc_GI_HPI_exec("Vasculitis F/U Template^ccc_GI_Vasculitis_FU()^")
This puts the text in the HPI for me. You can change the function line to output what ever text you desire. Maybe this will get you where you going.
Cecil
Here is a copy of my entire CCCQE-User-Edit-HPI-GI-TFE.txt file. Back up yours and try this. I think this is what your looking for:
fn ccc_GI_template_intro_1(){if PATIENT.TITLE="" then "" else PATIENT.TITLE + " " endif + if PATIENT.FIRSTNAME="" then "" else PATIENT.FIRSTNAME + " " endif + if PATIENT.LASTNAME="" then "" else PATIENT.LASTNAME + " " endif + "returns today for follow-up and management of "}
fn ccc_GI_Vasculitis_FU(){ccc_GI_template_intro_1() + "vasculitis. " + "Reviewed recent labs and diagnostics, current medications, and treatment regimen. Interval history obtained and since the last visit: "}
/*cc edit - removed adult acv ref*/
/*cc edit - update data entry ref to reports-ccc*/
ccc_GI_HPI_exec("Reports^Enterprise\CCC~Reports-CCC~AT_END^")
/*cc edit - update to HTML Imm form*/
ccc_GI_HPI_exec("Immunizations - Adult^Enterprise\CCC~Immunization Management~AT_END^")
ccc_GI_HPI_exec("In-house Labs^Enterprise\BFM~In-house Labs~AT_END^")
ccc_GI_HPI_exec("Minor Procedures Form^Enterprise\CCC~Minor Procedures-CCC~2^")
ccc_GI_HPI_exec("Acute Visit Template^ccc_hpi_template_acutevisit()^")
ccc_GI_HPI_exec("Annual Physical Template^ccc_hpi_template_annualPE()^")
ccc_GI_HPI_exec("New Patient Template^ccc_hpi_template_newpt()^")
ccc_GI_HPI_exec("Vasculitis F/U Template^ccc_GI_Vasculitis_FU()^")
fn ccc_GI_HPI_vis_typ() {"Acute Visit,Annual Physical,Consult,Follow-up Visit"}
fn ccc_GI_HPI_vis_typ_vis() {"yes"}
fn ccc_GI_HPI_vis_typ_add_to_text() {"yes"}
fn ccc_GI_HPI_cc() {""}
fn ccc_GI_HPI_cc_vis() {"yes"}
fn ccc_GI_HPI_cc_add_to_text() {"yes"}
fn ccc_GI_HPI_PCP() {""}
fn ccc_GI_HPI_PCP_vis() {"yes"}
fn ccc_GI_HPI_PCP_add_to_text() {"yes"}
fn ccc_GI_HPI_referred_by() {""}
fn ccc_GI_HPI_referred_by_vis() {"yes"}
fn ccc_GI_HPI_referred_by_add_to_text() {"yes"}
I made a correction to this message I had a typo in the function.