Example #1
0
 protected function doSave($con)
 {
     $affectedRows = 0;
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         if ($this->aTestApplicant !== null) {
             if ($this->aTestApplicant->isModified()) {
                 $affectedRows += $this->aTestApplicant->save($con);
             }
             $this->setTestApplicant($this->aTestApplicant);
         }
         if ($this->aAcademicCost !== null) {
             if ($this->aAcademicCost->isModified()) {
                 $affectedRows += $this->aAcademicCost->save($con);
             }
             $this->setAcademicCost($this->aAcademicCost);
         }
         if ($this->aUser !== null) {
             if ($this->aUser->isModified()) {
                 $affectedRows += $this->aUser->save($con);
             }
             $this->setUser($this->aUser);
         }
         if ($this->aAcademicProcess !== null) {
             if ($this->aAcademicProcess->isModified()) {
                 $affectedRows += $this->aAcademicProcess->save($con);
             }
             $this->setAcademicProcess($this->aAcademicProcess);
         }
         if ($this->aPaymentModel !== null) {
             if ($this->aPaymentModel->isModified()) {
                 $affectedRows += $this->aPaymentModel->save($con);
             }
             $this->setPaymentModel($this->aPaymentModel);
         }
         if ($this->aTransactionStatus !== null) {
             if ($this->aTransactionStatus->isModified()) {
                 $affectedRows += $this->aTransactionStatus->save($con);
             }
             $this->setTransactionStatus($this->aTransactionStatus);
         }
         if ($this->aJob !== null) {
             if ($this->aJob->isModified() || $this->aJob->getCurrentJobI18n()->isModified()) {
                 $affectedRows += $this->aJob->save($con);
             }
             $this->setJob($this->aJob);
         }
         if ($this->aAcademicCostComponent !== null) {
             if ($this->aAcademicCostComponent->isModified()) {
                 $affectedRows += $this->aAcademicCostComponent->save($con);
             }
             $this->setAcademicCostComponent($this->aAcademicCostComponent);
         }
         if ($this->aAcademicCalendar !== null) {
             if ($this->aAcademicCalendar->isModified()) {
                 $affectedRows += $this->aAcademicCalendar->save($con);
             }
             $this->setAcademicCalendar($this->aAcademicCalendar);
         }
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = VAppPaymentPeer::doInsert($this, $con);
                 $affectedRows += 1;
                 $this->setId($pk);
                 $this->setNew(false);
             } else {
                 $affectedRows += VAppPaymentPeer::doUpdate($this, $con);
             }
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }