Examples of NewBornPhysicalExamination


Examples of uk.nhs.interoperability.payloads.templates.NewBornPhysicalExamination

      missingFields.addMissingFields(e);
    }
   
    // Hearing Screening
    try {
      NewBornPhysicalExamination physical = createPhysicalExam(childScreeningFields);
      if (physical != null) {
        template.addCodedSections(new CodedSections(physical));
      }
    } catch (MissingMandatoryFieldException e) {
      missingFields.addMissingFields(e);
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.NewBornPhysicalExamination

   
    if (fields.getDateOfPhysicalExamination() == null) {
      return null;
    }
   
    NewBornPhysicalExamination template = new NewBornPhysicalExamination();
    template.setId(CDAUUID.generateUUIDString());
    template.setEffectiveTime(fields.getDateOfPhysicalExamination());
    if (fields.getGestationalAgeInDays() != null) {
      template.setGestationalAgeInDays(Integer.toString(fields.getGestationalAgeInDays()));
    }
    template.setHipsExamination(fields.getHipsExamination());
    template.setUltraSoundDecision(fields.getUltraSoundDecision());
    template.setExpertManagementPlan(fields.getExpertManagementPlan());
    template.setHeartExamination(fields.getHeartExamination());
    template.setEyesExamination(fields.getEyesExamination());
    template.setTestesExamination(fields.getTestesExamination());
    return template;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.