Why need an encounter? If we wish to reprint, we simply click on the handout button and then find the template.
One example usage for us is 'care plans'. Data is stored to OBS, and then the handout for 'Care Plan' can be requested, printing out a header explaining care plans, then goals, and then the current med list.
** Below is the coding used (as an example, you may need to change OBS code):
{PATIENT.FIRSTNAME} {PATIENT.LASTNAME}, MRN: {PATIENT.MEDRECNO}, date of birth: {PATIENT.DATEOFBIRTH}
Our practice is working to provide the best care possible for our patients. We are asking patients and providers to work together to create a care plan that will address lifestyle and treatment goals. In addition to identifying specific goals, the plan will address barriers, education, resources, and self-management tools that might be useful when working to achieve the goals. At the end of the visit, you will receive a copy of the care plan to reference at home.
Patient Preferences, lifestyle and treatment goals
{if LASTOBSVALUE("CC GOAL#1") <> "" then "Goal #1: " +LASTOBSVALUE('CC GOAL#1') + STR(HRET) + "Barrier(s): " +LASTOBSVALUE('CC GOAL#1 TY') + STR(HRET) + "Plan: " +LASTOBSVALUE('CC GOAL#1 ST') + STR(HRET) + "Status: " +LASTOBSVALUE('MGMT PLAN 1') else "" endif}
{if LASTOBSVALUE("CC GOAL#2") <> "" then "Goal #2: " +LASTOBSVALUE('CC GOAL#2') + STR(HRET) + "Barrier(s): " +LASTOBSVALUE('CC GOAL#2 TY') + STR(HRET) + "Plan: " +LASTOBSVALUE('CC GOAL#2 ST') + STR(HRET) + "Status: " +LASTOBSVALUE('MGMT PLAN 2')else "" endif}
{if LASTOBSVALUE("CC GOAL#3") <> "" then "Goal #3: " +LASTOBSVALUE('CC GOAL#3') + STR(HRET) + "Barrier(s): " +LASTOBSVALUE('CC GOAL#3 TY') + STR(HRET) + "Plan: " +LASTOBSVALUE('CC GOAL#3 ST') + STR(HRET) + "Status: " +LASTOBSVALUE('MGMT PLAN 3')else "" endif}
{if LASTOBSVALUE("CC GOAL#4") <> "" then "Goal #4: " +LASTOBSVALUE('CC GOAL#4') + STR(HRET) + "Barrier(s): " +LASTOBSVALUE('CC GOAL#4 TY') + STR(HRET) + "Plan: " +LASTOBSVALUE('CC GOAL#4 ST') + STR(HRET) + "Status: " +LASTOBSVALUE('MGMT PLAN 4')else "" endif}
{if LASTOBSVALUE("PMH PCPCOMM") <> "" then "Comments: " +LASTOBSVALUE('PMH PCPCOMM') else "" endif}
Current Medication Listing
{MEDS_AFTER()}
Posted : January 3, 2017 4:47 am