Difference between revisions of "Description AMC"

From OpenEMR Project Wiki
 
(27 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Patient(s) selection ==
== Overview ==
The first thing that is done is the selection of patients '''if a physician is chosen for the calculations'''.
This details the Automated Measure Calculations (AMC). The official documentation that was used to define these calculations can be found here:
:*Pertinent code from the library/clinical_rules.php file (test_rules_clinic() function)
http://healthcare.nist.gov/docs/170.302.n_AutomateMeasureCalc_v1.1.pdf
<pre>
  // Collect all patient ids
  $patientData = array();
  if (!empty($patient_id)) {
    // only look at the selected patient
    $patientData[0]['pid'] = $patient_id;
  }
  else {
    if (empty($provider)) {
      // Look at entire practice
      $rez = sqlStatement("SELECT `pid` FROM `patient_data`");
      for($iter=0; $row=sqlFetchArray($rez); $iter++) {
      $patientData[$iter]=$row;
      }
    }
    else {
      // Look at one provider
      $rez = sqlStatement("SELECT `pid` FROM `patient_data` " .
        "WHERE providerID=?", array($provider) );
      for($iter=0; $row=sqlFetchArray($rez); $iter++) {
      $patientData[$iter]=$row;
      }
    }
  }
</pre>
:*<span style="color:red;">Note the above algorithm may not be correct, and may need to instead look for existing encounters (form_encounter mysql table; both the provider_id and supervisor_id columns; note date possibly more accurately mapped to mysql forms table) within the selected dates.


== AMC Measures ==
== AMC Measures ==
Line 65: Line 39:
:9. Use CPOE for medication orders directly entered by any licensed healthcare professional who can enter orders into the medical record per state, local and professional guidelines. '''170.304(a)'''
:9. Use CPOE for medication orders directly entered by any licensed healthcare professional who can enter orders into the medical record per state, local and professional guidelines. '''170.304(a)'''
::*Category Counted: '''patients'''
::*Category Counted: '''patients'''
::*Denominator criteria:
::*Denominator criteria: '''encounter''' and '''at least one medication entered'''
::*Numerator criteria:
::*Numerator criteria: '''prescription is entered for patient'''
:10. Generate and transmit permissible prescriptions electronically. '''170.304(b)'''
:10. Generate and transmit permissible prescriptions electronically. '''170.304(b)'''
::*Category Counted: '''prescriptions'''
::*Category Counted: '''prescriptions'''
::*Denominator criteria:
::*Denominator criteria: '''none''' (all prescriptions, both via CPOE and e-prescribed)
::*Numerator criteria:
::*Numerator criteria: '''e-prescribed''' (only e-prescribed prescriptions)
:11. Record demographics. '''170.304(c)'''
:11. Record demographics. '''170.304(c)'''
::*Category Counted: '''patients'''
::*Category Counted: '''patients'''
::*Denominator criteria:
::*Denominator criteria: '''encounter'''
::*Numerator criteria:
::*Numerator criteria: '''demographics is entered for patient, including language, sex, race, ethnicity and DOB'''
:12. Send reminders to patients per patient preference for preventive/follow up care. '''170.304(d)'''
:12. Send reminders to patients per patient preference for preventive/follow up care. '''170.304(d)'''
::*Category Counted: '''patients'''
::*Category Counted: '''patients'''
::*Denominator criteria:
::*Denominator criteria: '''age <= 5''' or '''age >= 65'''
::*Numerator criteria:
::*Numerator criteria: '''a patient reminder was sent to patient'''
:13. Provide patients with an electronic copy of their health information (including diagnostic test results, problem list, medication lists, medication allergies), upon request. '''170.304(f)'''
:13. Provide patients with an electronic copy of their health information (including diagnostic test results, problem list, medication lists, medication allergies), upon request. '''170.304(f)'''
::*Category Counted: '''patients'''
::*Category Counted: '''patients'''
::*Denominator criteria:
::*Denominator criteria: '''encounter''' and '''patient requested records'''
::*Numerator criteria:
::*Numerator criteria: '''requested records provided within 3 business days of request'''
:14. Provide patients with timely electronic access to their health information (including lab results, problem list, medication lists, medication allergies) within four business days of the information being available to the EP. '''170.304(g)'''
:14. Provide patients with timely electronic access to their health information (including lab results, problem list, medication lists, medication allergies) within four business days of the information being available to the EP. '''170.304(g)'''
::*Category Counted: '''patients'''
::*Category Counted: '''patients'''
::*Denominator criteria:
::*Denominator criteria: '''encounter'''
::*Numerator criteria:
::*Numerator criteria: '''the patient has allowed access to patient portal in Demographics->Choices'''
:15. Provide clinical summaries for patients for each office visit. '''170.304(h)'''
:15. Provide clinical summaries for patients for each office visit. '''170.304(h)'''
::*Category Counted: '''encounters'''
::*Category Counted: '''encounters'''
::*Denominator criteria:
::*Denominator criteria: '''none''' (total number of encounters)
::*Numerator criteria:
::*Numerator criteria: '''Patient summary provided within 3 business days of encounter''' (total number of encounters that a patient summary was provided/sent within 3 business days)
:16. The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral. '''170.304(i)'''
:16. The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral. '''170.304(i)'''
::*Category Counted: '''transitions-out'''
::*Category Counted: '''transitions-out'''
::*Denominator criteria:
::*Denominator criteria: '''none''' (total number of referrals)
::*Numerator criteria:
::*Numerator criteria: '''Patient summary of care record sent''' (total number of referrals that a patient summary of care record was sent)


== AMC Measures Tracking Mechanisms ==
== AMC Measures Tracking Mechanisms ==
Line 119: Line 93:
::*Clickable entry placed in Patient Transactions
::*Clickable entry placed in Patient Transactions
::*Can be tracked at Reports->Clinic->AMC Tracking
::*Can be tracked at Reports->Clinic->AMC Tracking
[[Category:Clinical Decision Rules]][[Category:Developer Guide]]

Latest revision as of 05:40, 18 August 2012

Overview

This details the Automated Measure Calculations (AMC). The official documentation that was used to define these calculations can be found here: http://healthcare.nist.gov/docs/170.302.n_AutomateMeasureCalc_v1.1.pdf

AMC Measures

The vital parts of each measure are the category counted (patients, labs, encounters, prescriptions, transitions-in or transitions-out), the denominator criteria and the numerator criteria. Note this information can be found hard-coded at library/classes/rulesets/Amc/reports .

1. Maintain an up-to-date problem list of current and active diagnoses. 170.302(c)
  • Category Counted: patients
  • Denominator criteria: encounter
  • Numerator criteria: at least one medical problem or explicitly 'no medical problems' entered for patient
2. Maintain active medication list. 170.302(d)
  • Category Counted: patients
  • Denominator criteria: encounter
  • Numerator criteria: at least one medication or explicitly 'no medications' entered for patient
3. Maintain active medication allergy list. 170.302(e)
  • Category Counted: patients
  • Denominator criteria: encounter
  • Numerator criteria: at least one allergy or explicitly 'no allergies' entered for patient
4. Record and chart changes in vital signs. 170.302(f)
  • Category Counted: patients
  • Denominator criteria: encounter
  • Numerator criteria: ensure a weight, height, bp, and BMI are entered for patient
5. Record smoking status for patients 13 years old or older. 170.302(g)
  • Category Counted: patients
  • Denominator criteria: encounter and age >= 13
  • Numerator criteria: smoking status is entered for patient
6.Incorporate clinical lab-test results into certified EHR technology as structured data. 170.302(h)
  • Category Counted: labs
  • Denominator criteria: none (equals number of all lab results, both electronic and manual)
  • Numerator criteria: none (equals only number of electronic lab results)
7. The EP, eligible hospital or CAH who receives a patient from another setting of care or provider of care or believes an encounter is relevant should perform medication reconciliation. 170.302(j)
  • Category Counted: transitions-in
  • Denominator criteria: none (equals number of instances a medication reconciliation is applicable)
  • Numerator criteria: Medication Reconciliation completed for patient
8. Use certified EHR technology to identify patient-specific education resources and provide those resources to the patient if appropriate. 170.302(m)
  • Category Counted: patients
  • Denominator criteria: encounter
  • Numerator criteria: patient specific education provided to patient
9. Use CPOE for medication orders directly entered by any licensed healthcare professional who can enter orders into the medical record per state, local and professional guidelines. 170.304(a)
  • Category Counted: patients
  • Denominator criteria: encounter and at least one medication entered
  • Numerator criteria: prescription is entered for patient
10. Generate and transmit permissible prescriptions electronically. 170.304(b)
  • Category Counted: prescriptions
  • Denominator criteria: none (all prescriptions, both via CPOE and e-prescribed)
  • Numerator criteria: e-prescribed (only e-prescribed prescriptions)
11. Record demographics. 170.304(c)
  • Category Counted: patients
  • Denominator criteria: encounter
  • Numerator criteria: demographics is entered for patient, including language, sex, race, ethnicity and DOB
12. Send reminders to patients per patient preference for preventive/follow up care. 170.304(d)
  • Category Counted: patients
  • Denominator criteria: age <= 5 or age >= 65
  • Numerator criteria: a patient reminder was sent to patient
13. Provide patients with an electronic copy of their health information (including diagnostic test results, problem list, medication lists, medication allergies), upon request. 170.304(f)
  • Category Counted: patients
  • Denominator criteria: encounter and patient requested records
  • Numerator criteria: requested records provided within 3 business days of request
14. Provide patients with timely electronic access to their health information (including lab results, problem list, medication lists, medication allergies) within four business days of the information being available to the EP. 170.304(g)
  • Category Counted: patients
  • Denominator criteria: encounter
  • Numerator criteria: the patient has allowed access to patient portal in Demographics->Choices
15. Provide clinical summaries for patients for each office visit. 170.304(h)
  • Category Counted: encounters
  • Denominator criteria: none (total number of encounters)
  • Numerator criteria: Patient summary provided within 3 business days of encounter (total number of encounters that a patient summary was provided/sent within 3 business days)
16. The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral. 170.304(i)
  • Category Counted: transitions-out
  • Denominator criteria: none (total number of referrals)
  • Numerator criteria: Patient summary of care record sent (total number of referrals that a patient summary of care record was sent)

AMC Measures Tracking Mechanisms

Some of the measures had new tracking mechanisms built into OpenEMR:

1. Incorporate clinical lab-test results into certified EHR technology as structured data. 170.302(h)
  • Need to manually enter the non-electronic labs in the report at Reports->Clinical->Automated Measures (AMC)
2. The EP, eligible hospital or CAH who receives a patient from another setting of care or provider of care or believes an encounter is relevant should perform medication reconciliation. 170.302(j)
  • Clickable entry placed in main encounter screen
3. Use certified EHR technology to identify patient-specific education resources and provide those resources to the patient if appropriate. 170.302(m)
  • Clickable entry placed in main encounter screen
4. Generate and transmit permissible prescriptions electronically. 170.304(b)
  • Clickable entry placed in prescription editing screen
5. Provide patients with an electronic copy of their health information (including diagnostic test results, problem list, medication lists, medication allergies), upon request. 170.304(f)
  • The request can be submitted from the Patient/Client->Records->Patient Record Request page.
  • The request can be tracked on the Reports->Clinic->AMC Tracking page.
6. Provide patients with timely electronic access to their health information (including lab results, problem list, medication lists, medication allergies) within four business days of the information being available to the EP. 170.304(g)
  • Note it relies on the existance of a patient portal
  • New Patient Portal Authorization in the patient demographics->Choices section.
  • New column in the patient_data table to hold the Patient Portal Authorization.
7. Provide clinical summaries for patients for each office visit. 170.304(h)
  • Clickable entry placed in main encounter screen
  • Can be tracked at Reports->Clinic->AMC Tracking
8. The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral. 170.304(i)
  • Clickable entry placed in Patient Transactions
  • Can be tracked at Reports->Clinic->AMC Tracking