Followup

From CaisisWiki

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
-
The Follow Up Module currently supports two Prostate Quality of Life Surveys: EPIC-26 Short Form and three versions of the RAND: Pre-Treatment, Early Post Treatment and Late Post Treatment.
+
== OVERVIEW ==
-
Patients are followed 30 days prior to scheduled surgery, then 1, 3, 6, 12, 18, 24, 30, 36, 48, and 60 months after surgery. 
+
The Follow Up Module currently supports two Prostate Quality of Life Surveys:
-
Other Requirements:  
+
    •  The EPIC-26 Short Form
 +
    •  Three versions of the RAND:  
-
1. Patients are designated for Follow Up in the demographics form using the Patient Contact Status field. Drop downs in that field use the PtContactStatus lookup code.  
+
        1. Pre-Treatment
 +
        2. Early Post Treatment
 +
        3. Late Post Treatment
-
2. Two new PtContactStatus lookup codes are needed: "EPIC-26 Survey" and "RAND Survey"
+
Patients are followed 30 days prior to scheduled surgery, then 1, 3, 6, 12, 18, 24, 30, 36, 48, and 60 months after surgery.
-
3. On the Batch Print Interface, "Patient" Drop down options are PtContactStatus lookup codes tagged with attribute "FollowUpType" equal to "Survey"
 
-
4. To filter the Procedures that show up in the drop downs and ensure that only relevant procedures are queried for follow up, tag the ProcName lookup codes with the "DefaultModule" attribute equal to "FollowUp". For instance assign the attribute to "RP" if tracking Prostatectomy patients.
+
== SETUP/REQUIREMENTS ==
-
5. "Treating Physician" field is the most recently added physician for the patient with a Role of "Treating"
+
'''''Patient Status'''''
-
6. Survey Electronic data capture forms are driven from Survey Meta data. Survey Names MUST not be changed.  
+
Patients are designated for Follow Up on the Demographics form of the Patient Data Section using the Patient Contact Status field. Drop downs in that field use the PtContactStatus lookup code.   Two new PtContactStatus lookup code values are needed:
 +
    •  "EPIC-26 Survey"
 +
    •  "RAND Survey"
 +
On the Batch Print Surveys Interface, the "Patient  Contact Type" drop down options are PtContactStatus lookup codes tagged with:
-
'''System Logic for Sending Surveys'''
+
    •  Attribute =  "FollowUpType", Value =  "Survey"
-
-------------------------------------------------------------------
+
-
A. Batch Print Surveys / Letters
+
(On the Batch Print Letters interface, the corresponding drop down is “Survey Type”, which is also driven by the PtContactStatus lookup code)
-
- Do not show deceased patients (have DeathType or DeathDate in the Patient table)
 
-
- Only show patients if their "Contact Status" on the Demographics form is set to "Rand Survey" or "EPIC-26 Survey" (Patients.PtContactStatus field)
+
'''''Patient Data'''''
 +
Both the Batch Print Surveys and Batch Print Letters interfaces have “Procedure” dorp downs.  To filter the Procedures that show up in the drop downs and ensure that only relevant procedures are queried for follow up, tag the ProcName lookup code with:
-
B. Batch Print Letters
+
    • Attribute = "DefaultModule", Value = "FollowUp"
-
Doctor name at bottom of letter comes from most recent "Treating" physician (data comes from PatientPhysicians table, role of "Treating"). The Patient's title comes from first the patient "Title" field, but if blank, then "Ms." is Gender field equal to female or "Mr." if equal to male. Else blank.
+
(i.e., assign the attribute to "RP" if tracking Prostatectomy patients)
 +
Many queries in the Follow Up return a "Treating Physician" field.  This is the most recently added physician for the patient with a Role of "Treating", specified on the Patient Physician form in the Patient Data Section.
-
C. Batch Print Surveys
+
In addition, the Doctor name at bottom of a Follow Up Letter  also comes from most recent "Treating" physician . The Patient's title comes from first the patient "Title" field.  However, if blank, then based on “Gender” field (Ms./Mr.).  If also blank, then the patient’s “First Name” is used with no title.  All else, left blank.
-
Sending PRE-OP Survey Rules:
 
-
-- DUE DATE is 14 days prior to scheduled surgery
 
-
-- Processing Date < Scheduled Surgery Date
 
-
-- AND Pre Op Survey has not been sent before
 
-
-- AND Process Date is no earlier than 30 days before due date
 
-
-- AND IF it was sent before, make sure it was not 14 days or less ago
 
-
-- THEN Send PreOp
 
-
-- For "scheduledSurgeryDate" we are only checking the Procedure table for a ProcDate in the future (ProcDate > processDate)
 
-
-- For "scheduledSurgeryDate" we are NOT checking that Pending is true
 
 +
'''''Survey Data'''''
-
Post-Op Survey Send Timeframes:
+
Survey Electronic data capture forms are driven from Survey Meta data. Survey Names must NOT be changed.
-
{ 1, 21 }
 
-
{ 3, 30 }
 
-
{ 6, 45 }
 
-
{ 12, 60 }
 
-
{ 18, 75 }
 
-
{ 24, 75 }
 
-
{ 30, 75 }
 
-
{ 36, 75 }
 
-
{ 48, 75 }
 
-
{ 60, 75 }
 
-
Follow Up Letter Rules:
+
== SURVEYS ==
-
-- You expect to receive a survey response within 20 days of having sent it
+
-
-- send a follow up letter if our processDate is > than this expected date
+
-
-- AND a FU letter has not been sent before
+
-
Known Issues:
+
'''''Overview'''''
-
- Formatting may be off when printing Forms in FireFox
+
 
-
- If Survey Record deleted, then currently the relationship to the action item is in the related records table is left behind.  
+
Surveys can be either Pre-Op (before scheduled surgery) or Post-Op (after scheduled surgery) surveys.  Some sending rules apply to both Pre- and Post-Op surveys, while others are specific to the type of survey.
-
- Follow Up Letters do not expire. For instance, if survey is never received, then Follow up letter will continue to appear in list until it is sent
+
 
 +
 
 +
'''''Rules for Sending All Surveys''''':
 +
 
 +
    • Do not show deceased patients (have DeathType or DeathDate in the Patient table)
 +
 
 +
    • Only show patients if their "Contact Status" on the Demographics form is set to "RAND Survey" or "EPIC-26 Survey" (Patients.PtContactStatus field)
 +
 
 +
    •  For " SCHEDULED_SURGERY_DATE " we are only checking the Procedure table for a ProcDate in the future (ProcDate > processDate)
 +
 
 +
    • For " SCHEDULED_SURGERY_DATE " we are NOT checking that Pending is true
 +
 
 +
 
 +
'''''Rules for Sending PRE-OP Surveys''''':
 +
 
 +
    • DUE_DATE is 14 days prior to scheduled surgery
 +
 
 +
    • Patient should be sent survey if all the following are true:
 +
          o Processing Date  >  (DUE_DATE  -  30 days)
 +
          o Processing Date  <  SCHEDULED_SURGERY_DATE
 +
          o Pre Op Survey has not been sent before
 +
          o If Pre-Op Survey was sent before, make sure it was not 14 days or less ago
 +
 
 +
 
 +
'''''Rules for Sending POST -OP Surveys''''':
 +
 
 +
    • The Post-Op Survey send timeframes can be seen below, where
 +
          o  column 1 (MONTH_VALUE)is the number of months after surgery the survey is for (i.e., 1-month survey, 3-month survey, 6-month survey, etc.)
 +
          o  column 2 (DAYS_PRIOR) is the number of days prior to the due date the survey is available to be sent (i.e., 21 days before due date, 30 days before due date, etc.) :
 +
                                        { 1, 21 }
 +
                                        { 3, 30 }
 +
                                        { 6, 45 }
 +
                                        { 12, 60 }
 +
                                        { 18, 75 }
 +
                                        { 24, 75 }
 +
                                        { 30, 75 }
 +
                                        { 36, 75 }
 +
                                        { 48, 75 }
 +
                                        { 60, 75 }
 +
 
 +
    • DUE_DATE =  (SCHEDULED_SURGERY_DATE + MONTH_VALUE)
 +
 
 +
    • Patient should be sent survey if all the following are true:
 +
          o  Processing Date  >=  (DUE_DATE  -  DAYS_PRIOR )
 +
          o  Processing Date <=  (DUE_DATE  +  15 days)
 +
          o  Post-Op Survey has not been sent before

Revision as of 20:30, 1 March 2010

OVERVIEW

The Follow Up Module currently supports two Prostate Quality of Life Surveys:

    •  The EPIC-26 Short Form
    •  Three versions of the RAND:   
       1.  Pre-Treatment
       2.  Early Post Treatment 
       3.  Late Post Treatment

Patients are followed 30 days prior to scheduled surgery, then 1, 3, 6, 12, 18, 24, 30, 36, 48, and 60 months after surgery.


SETUP/REQUIREMENTS

Patient Status

Patients are designated for Follow Up on the Demographics form of the Patient Data Section using the Patient Contact Status field. Drop downs in that field use the PtContactStatus lookup code. Two new PtContactStatus lookup code values are needed:

    •  "EPIC-26 Survey"
    •  "RAND Survey"

On the Batch Print Surveys Interface, the "Patient Contact Type" drop down options are PtContactStatus lookup codes tagged with:

    •  Attribute =  "FollowUpType", Value =  "Survey"

(On the Batch Print Letters interface, the corresponding drop down is “Survey Type”, which is also driven by the PtContactStatus lookup code)


Patient Data

Both the Batch Print Surveys and Batch Print Letters interfaces have “Procedure” dorp downs. To filter the Procedures that show up in the drop downs and ensure that only relevant procedures are queried for follow up, tag the ProcName lookup code with:

    •	Attribute = "DefaultModule", Value = "FollowUp"

(i.e., assign the attribute to "RP" if tracking Prostatectomy patients)

Many queries in the Follow Up return a "Treating Physician" field. This is the most recently added physician for the patient with a Role of "Treating", specified on the Patient Physician form in the Patient Data Section.

In addition, the Doctor name at bottom of a Follow Up Letter also comes from most recent "Treating" physician . The Patient's title comes from first the patient "Title" field. However, if blank, then based on “Gender” field (Ms./Mr.). If also blank, then the patient’s “First Name” is used with no title. All else, left blank.


Survey Data

Survey Electronic data capture forms are driven from Survey Meta data. Survey Names must NOT be changed.


SURVEYS

Overview

Surveys can be either Pre-Op (before scheduled surgery) or Post-Op (after scheduled surgery) surveys. Some sending rules apply to both Pre- and Post-Op surveys, while others are specific to the type of survey.


Rules for Sending All Surveys:

    •	Do not show deceased patients (have DeathType or DeathDate in the Patient table)
    •	Only show patients if their "Contact Status" on the Demographics form is set to "RAND Survey" or "EPIC-26 Survey" (Patients.PtContactStatus field)
    •   For " SCHEDULED_SURGERY_DATE " we are only checking the Procedure table for a ProcDate in the future (ProcDate > processDate)
    •	For " SCHEDULED_SURGERY_DATE " we are NOT checking that Pending is true


Rules for Sending PRE-OP Surveys:

    •	DUE_DATE is 14 days prior to scheduled surgery
    •	Patient should be sent survey if all the following are true:
         o	Processing Date  >  (DUE_DATE  -   30 days)
         o	Processing Date  <   SCHEDULED_SURGERY_DATE
         o	Pre Op Survey has not been sent before 
         o	If Pre-Op Survey was sent before, make sure it was not 14 days or less ago


Rules for Sending POST -OP Surveys:

    •	The Post-Op Survey send timeframes can be seen below, where 
         o  column 1 (MONTH_VALUE)is the number of months after surgery the survey is for (i.e., 1-month survey, 3-month survey, 6-month survey, etc.) 
         o  column 2 (DAYS_PRIOR) is the number of days prior to the due date the survey is available to be sent (i.e., 21 days before due date, 30 days before due date, etc.) :
                                       { 1, 21 }
                                       { 3, 30 }
                                       { 6, 45 }
                                       { 12, 60 }
                                       { 18, 75 }
                                       { 24, 75 }
                                       { 30, 75 }
                                       { 36, 75 }
                                       { 48, 75 }
                                       { 60, 75 }
    •	DUE_DATE =  (SCHEDULED_SURGERY_DATE + MONTH_VALUE)
    •	Patient should be sent survey if all the following are true:
         o  Processing Date  >=  (DUE_DATE  -  DAYS_PRIOR ) 
         o  Processing Date <=  (DUE_DATE  +  15 days)
         o  Post-Op Survey has not been sent before
Personal tools