Esempio 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      ConnectionInterface $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(ConnectionInterface $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->aCountry !== null) {
             if ($this->aCountry->isModified() || $this->aCountry->isNew()) {
                 $affectedRows += $this->aCountry->save($con);
             }
             $this->setCountry($this->aCountry);
         }
         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;
 }
Esempio n. 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      ConnectionInterface $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(ConnectionInterface $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->aCustomerTitle !== null) {
             if ($this->aCustomerTitle->isModified() || $this->aCustomerTitle->isNew()) {
                 $affectedRows += $this->aCustomerTitle->save($con);
             }
             $this->setCustomerTitle($this->aCustomerTitle);
         }
         if ($this->aCountry !== null) {
             if ($this->aCountry->isModified() || $this->aCountry->isNew()) {
                 $affectedRows += $this->aCountry->save($con);
             }
             $this->setCountry($this->aCountry);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->ordersRelatedByInvoiceOrderAddressIdScheduledForDeletion !== null) {
             if (!$this->ordersRelatedByInvoiceOrderAddressIdScheduledForDeletion->isEmpty()) {
                 \Thelia\Model\OrderQuery::create()->filterByPrimaryKeys($this->ordersRelatedByInvoiceOrderAddressIdScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->ordersRelatedByInvoiceOrderAddressIdScheduledForDeletion = null;
             }
         }
         if ($this->collOrdersRelatedByInvoiceOrderAddressId !== null) {
             foreach ($this->collOrdersRelatedByInvoiceOrderAddressId as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->ordersRelatedByDeliveryOrderAddressIdScheduledForDeletion !== null) {
             if (!$this->ordersRelatedByDeliveryOrderAddressIdScheduledForDeletion->isEmpty()) {
                 \Thelia\Model\OrderQuery::create()->filterByPrimaryKeys($this->ordersRelatedByDeliveryOrderAddressIdScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->ordersRelatedByDeliveryOrderAddressIdScheduledForDeletion = null;
             }
         }
         if ($this->collOrdersRelatedByDeliveryOrderAddressId !== null) {
             foreach ($this->collOrdersRelatedByDeliveryOrderAddressId as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
Esempio n. 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      ConnectionInterface $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(ConnectionInterface $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->aCustomer !== null) {
             if ($this->aCustomer->isModified() || $this->aCustomer->isNew()) {
                 $affectedRows += $this->aCustomer->save($con);
             }
             $this->setCustomer($this->aCustomer);
         }
         if ($this->aCustomerTitle !== null) {
             if ($this->aCustomerTitle->isModified() || $this->aCustomerTitle->isNew()) {
                 $affectedRows += $this->aCustomerTitle->save($con);
             }
             $this->setCustomerTitle($this->aCustomerTitle);
         }
         if ($this->aCountry !== null) {
             if ($this->aCountry->isModified() || $this->aCountry->isNew()) {
                 $affectedRows += $this->aCountry->save($con);
             }
             $this->setCountry($this->aCountry);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->cartsRelatedByAddressDeliveryIdScheduledForDeletion !== null) {
             if (!$this->cartsRelatedByAddressDeliveryIdScheduledForDeletion->isEmpty()) {
                 foreach ($this->cartsRelatedByAddressDeliveryIdScheduledForDeletion as $cartRelatedByAddressDeliveryId) {
                     // need to save related object because we set the relation to null
                     $cartRelatedByAddressDeliveryId->save($con);
                 }
                 $this->cartsRelatedByAddressDeliveryIdScheduledForDeletion = null;
             }
         }
         if ($this->collCartsRelatedByAddressDeliveryId !== null) {
             foreach ($this->collCartsRelatedByAddressDeliveryId as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->cartsRelatedByAddressInvoiceIdScheduledForDeletion !== null) {
             if (!$this->cartsRelatedByAddressInvoiceIdScheduledForDeletion->isEmpty()) {
                 foreach ($this->cartsRelatedByAddressInvoiceIdScheduledForDeletion as $cartRelatedByAddressInvoiceId) {
                     // need to save related object because we set the relation to null
                     $cartRelatedByAddressInvoiceId->save($con);
                 }
                 $this->cartsRelatedByAddressInvoiceIdScheduledForDeletion = null;
             }
         }
         if ($this->collCartsRelatedByAddressInvoiceId !== null) {
             foreach ($this->collCartsRelatedByAddressInvoiceId as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
Esempio n. 4
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      ConnectionInterface $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(ConnectionInterface $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->aCountry !== null) {
             if ($this->aCountry->isModified() || $this->aCountry->isNew()) {
                 $affectedRows += $this->aCountry->save($con);
             }
             $this->setCountry($this->aCountry);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
             } else {
                 $this->doUpdate($con);
             }
             $affectedRows += 1;
             $this->resetModified();
         }
         if ($this->taxRuleCountriesScheduledForDeletion !== null) {
             if (!$this->taxRuleCountriesScheduledForDeletion->isEmpty()) {
                 \Thelia\Model\TaxRuleCountryQuery::create()->filterByPrimaryKeys($this->taxRuleCountriesScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->taxRuleCountriesScheduledForDeletion = null;
             }
         }
         if ($this->collTaxRuleCountries !== null) {
             foreach ($this->collTaxRuleCountries as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->addressesScheduledForDeletion !== null) {
             if (!$this->addressesScheduledForDeletion->isEmpty()) {
                 foreach ($this->addressesScheduledForDeletion as $address) {
                     // need to save related object because we set the relation to null
                     $address->save($con);
                 }
                 $this->addressesScheduledForDeletion = null;
             }
         }
         if ($this->collAddresses !== null) {
             foreach ($this->collAddresses as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->orderAddressesScheduledForDeletion !== null) {
             if (!$this->orderAddressesScheduledForDeletion->isEmpty()) {
                 foreach ($this->orderAddressesScheduledForDeletion as $orderAddress) {
                     // need to save related object because we set the relation to null
                     $orderAddress->save($con);
                 }
                 $this->orderAddressesScheduledForDeletion = null;
             }
         }
         if ($this->collOrderAddresses !== null) {
             foreach ($this->collOrderAddresses as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->stateI18nsScheduledForDeletion !== null) {
             if (!$this->stateI18nsScheduledForDeletion->isEmpty()) {
                 \Thelia\Model\StateI18nQuery::create()->filterByPrimaryKeys($this->stateI18nsScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->stateI18nsScheduledForDeletion = null;
             }
         }
         if ($this->collStateI18ns !== null) {
             foreach ($this->collStateI18ns as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }