Package ch.elexis.data

Examples of ch.elexis.data.Konsultation


  private void handleConsultaion(Fall fall, Patient patient, int birthYear) {
    Konsultation[] consultations = fall.getBehandlungen(false);

    for (int i = 0; i < consultations.length; i++) {
      Konsultation cons = consultations[i];
      if (this.inPeriod(cons.getDatum())) {

        list.get(birthYear - firstCohort)[1] = (Integer) list
            .get(birthYear - firstCohort)[1]
            + ((Double) cons.getUmsatz()).intValue();

        list.get(birthYear - firstCohort)[2] = (Integer) list
            .get(birthYear - firstCohort)[2] + 1;
      }
    }
View Full Code Here

TOP

Related Classes of ch.elexis.data.Konsultation

Copyright © 2018 www.massapicom. 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.