Versions Compared

Key

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

...

  • 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

...

  • 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

...