protected function doSave($con) { $affectedRows = 0; if (!$this->alreadyInSave) { $this->alreadyInSave = true; if ($this->aSchedule !== null) { if ($this->aSchedule->isModified()) { $affectedRows += $this->aSchedule->save($con); } $this->setSchedule($this->aSchedule); } if ($this->aScheduleDetail !== null) { if ($this->aScheduleDetail->isModified()) { $affectedRows += $this->aScheduleDetail->save($con); } $this->setScheduleDetail($this->aScheduleDetail); } if ($this->aGradeComponent !== null) { if ($this->aGradeComponent->isModified()) { $affectedRows += $this->aGradeComponent->save($con); } $this->setGradeComponent($this->aGradeComponent); } if ($this->aEmployee !== null) { if ($this->aEmployee->isModified()) { $affectedRows += $this->aEmployee->save($con); } $this->setEmployee($this->aEmployee); } if ($this->isModified()) { if ($this->isNew()) { $pk = VAbsenceEkskulPeer::doInsert($this, $con); $affectedRows += 1; $this->setNew(false); } else { $affectedRows += VAbsenceEkskulPeer::doUpdate($this, $con); } $this->resetModified(); } $this->alreadyInSave = false; } return $affectedRows; }