Documentation
Overview
The aim of this project is to produce CDA documents from OpenMRS data objects on the user's requests. The Clinical Document Architecture(CDA) is an XML-based standard for exchange of health information records, it is meant to ensure interoperability. We have used MDHT API to produce CDA Documents.
This document will cover following information :-
- What types of CDA Documents or Messages are currently supported by the CDA Generator module
- Design of the Module
- How users can extend on CDA Generator module
- How we are populating sections of APHP CDA Message
- Installation of the Module
- Potential Improvements
- Screenshots
- Quick Demo
What types of CDA Documents or Messages are currently generated by the CDA Generator module ?
This release of module only generate an APHP CDA Document type. However, developers are free to write up new CDA documents or message which can be added to the module. There are many types of CDA documents (APHP, APS, APL ,APE, e.t.c) people refer to it as IHE Profiles.
Design of the Module
During this summer our focus was to generate APHP CDA message, but there are many types of IHE profile or CDA documents types.
Now question is, will our module allow any other type of CDA Document?
Yes, It does.
We have designed our module to ensure that our work is flexible for further extension. If someone wants to add new CDA type documents other than APHP ,our module accommodates this change. So, our design consists of an hierarchy of classes or we call them as a hierarchy of handlers. BaseCdaTypeHandler is base class which contains all attributes necessary for CDA document and all other handlers extend this BaseCdaTypeHandler (example APHP handler, APS handler or some other handler).
In our entire code base we are using the reference of BaseCDATypeHandler to make our work as generic as possible.
If we want to add a new CDA Document Type all we need to do is create a class, extend from this BasCdaTypeHandler class and use setter methods to add values that’s it!
The same design approach is followed for Section as well. There we have BaseCdaSectionhandler and child handlers extending it.
Class Diagrams
How users can extend on CDA Generator module?
Users can extend module by adding new CDA document Type or Editing existing one. Each CDA document consist of few sections and users can also add new sections to the module or Edit existing ones. The Editing/Adding/Deleting of Sections and CDA document types can be done programmatically through code not the User Interface.
1) Steps to Add a new CDA Document Type
- fork our module from gitub here
- open "CDAGenerator-api"folder
- In src/main/java package try to locate "org.openmrs.module.CDAGenerator.CDAHandlers" package
- Now in this "org.openmrs.module.CDAGenerator.CDAHandlers" package, Create class for new CDA Document Type you need and Note that this class must extend BaseCdaTypeHandler class.
- Add details about documents either using setter methods or adding in a constructor. Thats it and new CDA document type is ready!
Image showing location to add new CDA Document Type
Sample Code
package org.openmrs.module.CDAGenerator.CDAHandlers; public class MyCDADocument extends BaseCdaTypeHandler { public MyCDADocument() { this.documentFullName="MyCDADocument"; this.documentShortName="MCD"; this.documentDescription="to add new cda document type"; this.templateid="some free text";//required attribute,not null this.formatCode=null; //optional attribute } }
2) Steps to Add a new Section
- fork our module from gitub here
- open "CDAGenerator-api"folder
- In src/main/java package try to locate "org.openmrs.module.CDAGenerator.SectionHandlers" package
- Now in this "org.openmrs.module.CDAGenerator.SectionHandlers" package, Create class for new section you need and Note that this class must extend BaseCdaSectionHandler class.
- Add details about section either using setter methods or adding in a constructor. Thats it and new Section is ready!
Image showing location to add new sections
Sample Code
package org.openmrs.module.CDAGenerator.SectionHandlers; public class MySection extends BaseCdaSectionHandler { public ChiefComplaintSection() { this.sectionName="My Section"; this.templateid="";//ihe specific id this.sectionDescription="This is my new section"; this.code="";//Ihe specific code for section } }
Similarly one can edit or delete any Sections or CDA document type.
How we are populating sections of APHP CDA Message
We have used OpenMRS Concept Dictionary to populate APHP CDA message section with answers. We used IHE APHP Document value sets which list out specific concepts that must be used for specific sections. We are updating OpenMRS Concept dictionary with LOINC codes, SNOMED codes and new concept which our module needs.
Installation of the Module
Potential Improvements
We can Add/Edit/Delete CDA Documents and Sections Programmatically but not though the UI.
Create clients to consume CDAs by hitting a REST Web Service with a patient identifier and cda document type to download their CDA instead of users downloading through administrative tab.
We are using gazelle as an external validator in addition to mdht cda validation code in our module. I’m manually using GUI gazelle validator to check our cda documents. So, we can call gazelle validator via a web service from our module.
Screenshots
1) Administration tab (After the module is loaded)
2) Export CDA Document Link
3) Validation of Export CDA Form
4) Successful Generation of CDA Document
5) Error report (If generated document is invalid)
6) Manage CDA Section Link
It lists out all sections present in our module and also provide details of each section
7) Manage CDA Type Link
It lists out all CDA Document types present in our module and also provide details of each document type
Quick Demo
Please watch demonstration of module :
Downloads
Source code: https://github.com/openmrs/openmrs-module-cdagenerator