/**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param PropelPDO $con
  * @return int             The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws PropelException
  * @see        save()
  */
 protected function doSave(PropelPDO $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aCliente !== null) {
             if ($this->aCliente->isModified() || $this->aCliente->isNew()) {
                 $affectedRows += $this->aCliente->save($con);
             }
             $this->setCliente($this->aCliente);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
Exemple #2
0
 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param PropelPDO $con
  * @return int             The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws PropelException
  * @see        save()
  */
 protected function doSave(PropelPDO $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their coresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aCliente !== null) {
             if ($this->aCliente->isModified() || $this->aCliente->isNew()) {
                 $affectedRows += $this->aCliente->save($con);
             }
             $this->setCliente($this->aCliente);
         }
         if ($this->aTipoPago !== null) {
             if ($this->aTipoPago->isModified() || $this->aTipoPago->isNew()) {
                 $affectedRows += $this->aTipoPago->save($con);
             }
             $this->setTipoPago($this->aTipoPago);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->facturaDetallesScheduledForDeletion !== null) {
             if (!$this->facturaDetallesScheduledForDeletion->isEmpty()) {
                 foreach ($this->facturaDetallesScheduledForDeletion as $facturaDetalle) {
                     // need to save related object because we set the relation to null
                     $facturaDetalle->save($con);
                 }
                 $this->facturaDetallesScheduledForDeletion = null;
             }
         }
         if ($this->collFacturaDetalles !== null) {
             foreach ($this->collFacturaDetalles as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
Exemple #3
0
 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param PropelPDO $con
  * @return int             The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws PropelException
  * @see        save()
  */
 protected function doSave(PropelPDO $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aCliente !== null) {
             if ($this->aCliente->isModified() || $this->aCliente->isNew()) {
                 $affectedRows += $this->aCliente->save($con);
             }
             $this->setCliente($this->aCliente);
         }
         if ($this->aProveedorcliente !== null) {
             if ($this->aProveedorcliente->isModified() || $this->aProveedorcliente->isNew()) {
                 $affectedRows += $this->aProveedorcliente->save($con);
             }
             $this->setProveedorcliente($this->aProveedorcliente);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->expedienteanticiposScheduledForDeletion !== null) {
             if (!$this->expedienteanticiposScheduledForDeletion->isEmpty()) {
                 ExpedienteanticipoQuery::create()->filterByPrimaryKeys($this->expedienteanticiposScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->expedienteanticiposScheduledForDeletion = null;
             }
         }
         if ($this->collExpedienteanticipos !== null) {
             foreach ($this->collExpedienteanticipos as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->expedientearchivosScheduledForDeletion !== null) {
             if (!$this->expedientearchivosScheduledForDeletion->isEmpty()) {
                 ExpedientearchivoQuery::create()->filterByPrimaryKeys($this->expedientearchivosScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->expedientearchivosScheduledForDeletion = null;
             }
         }
         if ($this->collExpedientearchivos !== null) {
             foreach ($this->collExpedientearchivos as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->expedientegastosScheduledForDeletion !== null) {
             if (!$this->expedientegastosScheduledForDeletion->isEmpty()) {
                 ExpedientegastoQuery::create()->filterByPrimaryKeys($this->expedientegastosScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->expedientegastosScheduledForDeletion = null;
             }
         }
         if ($this->collExpedientegastos !== null) {
             foreach ($this->collExpedientegastos as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->expedienteserviciosScheduledForDeletion !== null) {
             if (!$this->expedienteserviciosScheduledForDeletion->isEmpty()) {
                 ExpedienteservicioQuery::create()->filterByPrimaryKeys($this->expedienteserviciosScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->expedienteserviciosScheduledForDeletion = null;
             }
         }
         if ($this->collExpedienteservicios !== null) {
             foreach ($this->collExpedienteservicios as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }