protected function doSave($con) { $affectedRows = 0; if (!$this->alreadyInSave) { $this->alreadyInSave = true; if ($this->aDepartment !== null) { if ($this->aDepartment->isModified()) { $affectedRows += $this->aDepartment->save($con); } $this->setDepartment($this->aDepartment); } if ($this->aRegion !== null) { if ($this->aRegion->isModified()) { $affectedRows += $this->aRegion->save($con); } $this->setRegion($this->aRegion); } if ($this->isModified()) { if ($this->isNew()) { $pk = DepartmentDetailPeer::doInsert($this, $con); $affectedRows += 1; $this->setId($pk); $this->setNew(false); } else { $affectedRows += DepartmentDetailPeer::doUpdate($this, $con); } $this->resetModified(); } $this->alreadyInSave = false; } return $affectedRows; }