Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Introduction

Interest or focus on the participant header might be different based on centers or collection protocol needs. Example some collection protocols needs participants PPID, first name, and last name as the header, some wants to see MPI. Therefore it is important that participant header can be configured as per protocol or centers needs.

This configuration can be done at two levels.

  1. System wide - applies to all protocols
  2. Protocol level - overrides the system setting for that protocol

OpenSpecimen is shipped with default header template PPID (FirstName LastName) 

How to configure?

Using CP workflows configuration via REST API, we can provide the HTML template of the header. According to configured HTML template UI will show the participant header.

Below is the JSON format which we can add to workflow JSON and set it at CP or System level.

Code Block
languagejs
{
  "name" : "common",
  "data" : {
    "participantHeaderTmpl" : <participant_header_html_template>
  }
} 


Example: Show PPID as a header 

Code Block
languagejs
{
  "name" : "common",
  "data" : {
    "participantHeaderTmpl" : “<span>{{cpr.ppid}}</span>”
  }
}

Examples of template

  1. PPID (MRN) - Show PPID and MRN of site 'New York' if exist. MRN should be display only if user has PHI access.

    Code Block
    languagexml
    <span>{{cpr.ppid}}</span>
    <span ng-if="userCtx.hasPhiAccess"  ng-repeat="pmi in cpr.participant.pmis">
      <span ng-if="pmi.siteName=='Pune'"> ({{pmi.mrn}}) </span>
    </span>


  2. PPI (MPI) - Show PPID and master patient index if exist. Master patient index should be display only if user has PHI access.

    Code Block
    languagexml
    <span>{{cpr.ppid}}</span>
    <span ng-if="userCtx.hasPhiAccess && cpr.participant.empi">
      <span> ({{cpr.participant.empi}}) </span>
    </span>


...