Ejemplo n.º 1
0
 protected function doSave($con)
 {
     $affectedRows = 0;
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         if ($this->aAcademicCalendar !== null) {
             if ($this->aAcademicCalendar->isModified()) {
                 $affectedRows += $this->aAcademicCalendar->save($con);
             }
             $this->setAcademicCalendar($this->aAcademicCalendar);
         }
         if ($this->aClassGroup !== null) {
             if ($this->aClassGroup->isModified()) {
                 $affectedRows += $this->aClassGroup->save($con);
             }
             $this->setClassGroup($this->aClassGroup);
         }
         if ($this->aAcademicCost !== null) {
             if ($this->aAcademicCost->isModified()) {
                 $affectedRows += $this->aAcademicCost->save($con);
             }
             $this->setAcademicCost($this->aAcademicCost);
         }
         if ($this->aAcademicCostComponent !== null) {
             if ($this->aAcademicCostComponent->isModified()) {
                 $affectedRows += $this->aAcademicCostComponent->save($con);
             }
             $this->setAcademicCostComponent($this->aAcademicCostComponent);
         }
         if ($this->aPaymentModel !== null) {
             if ($this->aPaymentModel->isModified()) {
                 $affectedRows += $this->aPaymentModel->save($con);
             }
             $this->setPaymentModel($this->aPaymentModel);
         }
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = VStudentElsePeer::doInsert($this, $con);
                 $affectedRows += 1;
                 $this->setId($pk);
                 $this->setNew(false);
             } else {
                 $affectedRows += VStudentElsePeer::doUpdate($this, $con);
             }
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }