예제 #1
0
 public function processEditExamAction()
 {
     $exams = $this->_getParam('exams');
     $patientExam = new PatientExam();
     $patientExam->populateWithArray($exams);
     $patientExam->persist();
     $data = array('id' => $patientExam->code, 'data' => array(date('Y-m-d', strtotime($patientExam->dateExamined)), (string) $patientExam->result, (string) $patientExam->exam, (string) $patientExam->refused, (string) $patientExam->comments));
     $json = Zend_Controller_Action_HelperBroker::getStaticHelper('json');
     $json->suppressExit = true;
     $json->direct($data);
 }
예제 #2
0
 public function processEditExamAction()
 {
     $exams = $this->_getParam('exams');
     $patientExam = new PatientExam();
     $patientExam->populateWithArray($exams);
     $patientExam->persist();
     $data = true;
     $json = Zend_Controller_Action_HelperBroker::getStaticHelper('json');
     $json->suppressExit = true;
     $json->direct($data);
 }