Benutzer-Werkzeuge

Webseiten-Werkzeuge


Seitenleiste

de:userguide:formeditor:functions:get_birthday_of_current_patient

getBirthdayOfCurrentPatient

/**
 * Gets the birthday of the current patient and returns it as 
 * a java.util.Calendar.
 * 
 * @return:
 * The birthday of the current patient.
 */
function getBirthdayOfCurrentPatient () {
   /* ======================================== */
   // IMPORTS
   importPackage(java.util);
 
   var birthday = new GregorianCalendar();
   birthday.setTime(patient.getBirthDate());
 
   return birthday;
   /* ======================================== */
}
de/userguide/formeditor/functions/get_birthday_of_current_patient.txt · Zuletzt geändert: 2019/12/09 10:19 (Externe Bearbeitung)

Seiten-Werkzeuge