Esempio n. 1
0
 protected function doSave($con)
 {
     $affectedRows = 0;
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         if ($this->aCatCategory !== null) {
             if ($this->aCatCategory->isModified()) {
                 $affectedRows += $this->aCatCategory->save($con);
             }
             $this->setCatCategory($this->aCatCategory);
         }
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = VMaterialCatalogPeer::doInsert($this, $con);
                 $affectedRows += 1;
                 $this->setNew(false);
             } else {
                 $affectedRows += VMaterialCatalogPeer::doUpdate($this, $con);
             }
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }