Ejemplo n.º 1
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->aMarca !== null) {
             if ($this->aMarca->isModified() || $this->aMarca->isNew()) {
                 $affectedRows += $this->aMarca->save($con);
             }
             $this->setMarca($this->aMarca);
         }
         if ($this->aTipoProducto !== null) {
             if ($this->aTipoProducto->isModified() || $this->aTipoProducto->isNew()) {
                 $affectedRows += $this->aTipoProducto->save($con);
             }
             $this->setTipoProducto($this->aTipoProducto);
         }
         if ($this->aTipoPresentacion !== null) {
             if ($this->aTipoPresentacion->isModified() || $this->aTipoPresentacion->isNew()) {
                 $affectedRows += $this->aTipoPresentacion->save($con);
             }
             $this->setTipoPresentacion($this->aTipoPresentacion);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->detallePedidoProveedorsScheduledForDeletion !== null) {
             if (!$this->detallePedidoProveedorsScheduledForDeletion->isEmpty()) {
                 foreach ($this->detallePedidoProveedorsScheduledForDeletion as $detallePedidoProveedor) {
                     // need to save related object because we set the relation to null
                     $detallePedidoProveedor->save($con);
                 }
                 $this->detallePedidoProveedorsScheduledForDeletion = null;
             }
         }
         if ($this->collDetallePedidoProveedors !== null) {
             foreach ($this->collDetallePedidoProveedors as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->promocionsScheduledForDeletion !== null) {
             if (!$this->promocionsScheduledForDeletion->isEmpty()) {
                 foreach ($this->promocionsScheduledForDeletion as $promocion) {
                     // need to save related object because we set the relation to null
                     $promocion->save($con);
                 }
                 $this->promocionsScheduledForDeletion = null;
             }
         }
         if ($this->collPromocions !== null) {
             foreach ($this->collPromocions as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->inventariosScheduledForDeletion !== null) {
             if (!$this->inventariosScheduledForDeletion->isEmpty()) {
                 foreach ($this->inventariosScheduledForDeletion as $inventario) {
                     // need to save related object because we set the relation to null
                     $inventario->save($con);
                 }
                 $this->inventariosScheduledForDeletion = null;
             }
         }
         if ($this->collInventarios !== null) {
             foreach ($this->collInventarios as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         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);
                 }
             }
         }
         if ($this->movimientosScheduledForDeletion !== null) {
             if (!$this->movimientosScheduledForDeletion->isEmpty()) {
                 foreach ($this->movimientosScheduledForDeletion as $movimiento) {
                     // need to save related object because we set the relation to null
                     $movimiento->save($con);
                 }
                 $this->movimientosScheduledForDeletion = null;
             }
         }
         if ($this->collMovimientos !== null) {
             foreach ($this->collMovimientos as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }