Пример #1
0
 protected function doSave($con)
 {
     $affectedRows = 0;
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         if ($this->aPayerType !== null) {
             if ($this->aPayerType->isModified()) {
                 $affectedRows += $this->aPayerType->save($con);
             }
             $this->setPayerType($this->aPayerType);
         }
         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->aClassGroup !== null) {
             if ($this->aClassGroup->isModified()) {
                 $affectedRows += $this->aClassGroup->save($con);
             }
             $this->setClassGroup($this->aClassGroup);
         }
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = VAcaCostElsePeer::doInsert($this, $con);
                 $affectedRows += 1;
                 $this->setId($pk);
                 $this->setNew(false);
             } else {
                 $affectedRows += VAcaCostElsePeer::doUpdate($this, $con);
             }
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }