Esempio 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->aAcademicCostComponent !== null) {
             if ($this->aAcademicCostComponent->isModified()) {
                 $affectedRows += $this->aAcademicCostComponent->save($con);
             }
             $this->setAcademicCostComponent($this->aAcademicCostComponent);
         }
         if ($this->aAcademicProcess !== null) {
             if ($this->aAcademicProcess->isModified()) {
                 $affectedRows += $this->aAcademicProcess->save($con);
             }
             $this->setAcademicProcess($this->aAcademicProcess);
         }
         if ($this->aBankAccount !== null) {
             if ($this->aBankAccount->isModified()) {
                 $affectedRows += $this->aBankAccount->save($con);
             }
             $this->setBankAccount($this->aBankAccount);
         }
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = VAcademicCostPeer::doInsert($this, $con);
                 $affectedRows += 1;
                 $this->setId($pk);
                 $this->setNew(false);
             } else {
                 $affectedRows += VAcademicCostPeer::doUpdate($this, $con);
             }
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }