/** * 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; if ($this->isNew() || $this->isModified()) { // persist changes if ($this->isNew()) { $this->doInsert($con); } else { $this->doUpdate($con); } $affectedRows += 1; $this->resetModified(); } if ($this->couponsScheduledForDeletion !== null) { if (!$this->couponsScheduledForDeletion->isEmpty()) { $pks = array(); $pk = $this->getPrimaryKey(); foreach ($this->couponsScheduledForDeletion->getPrimaryKeys(false) as $remotePk) { $pks[] = array($pk, $remotePk); } CouponCountryQuery::create()->filterByPrimaryKeys($pks)->delete($con); $this->couponsScheduledForDeletion = null; } foreach ($this->getCoupons() as $coupon) { if ($coupon->isModified()) { $coupon->save($con); } } } elseif ($this->collCoupons) { foreach ($this->collCoupons as $coupon) { if ($coupon->isModified()) { $coupon->save($con); } } } if ($this->orderCouponsScheduledForDeletion !== null) { if (!$this->orderCouponsScheduledForDeletion->isEmpty()) { $pks = array(); $pk = $this->getPrimaryKey(); foreach ($this->orderCouponsScheduledForDeletion->getPrimaryKeys(false) as $remotePk) { $pks[] = array($pk, $remotePk); } OrderCouponCountryQuery::create()->filterByPrimaryKeys($pks)->delete($con); $this->orderCouponsScheduledForDeletion = null; } foreach ($this->getOrderCoupons() as $orderCoupon) { if ($orderCoupon->isModified()) { $orderCoupon->save($con); } } } elseif ($this->collOrderCoupons) { foreach ($this->collOrderCoupons as $orderCoupon) { if ($orderCoupon->isModified()) { $orderCoupon->save($con); } } } if ($this->areasScheduledForDeletion !== null) { if (!$this->areasScheduledForDeletion->isEmpty()) { $pks = array(); $pk = $this->getPrimaryKey(); foreach ($this->areasScheduledForDeletion->getPrimaryKeys(false) as $remotePk) { $pks[] = array($remotePk, $pk); } CountryAreaQuery::create()->filterByPrimaryKeys($pks)->delete($con); $this->areasScheduledForDeletion = null; } foreach ($this->getAreas() as $area) { if ($area->isModified()) { $area->save($con); } } } elseif ($this->collAreas) { foreach ($this->collAreas as $area) { if ($area->isModified()) { $area->save($con); } } } 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()) { \Thelia\Model\AddressQuery::create()->filterByPrimaryKeys($this->addressesScheduledForDeletion->getPrimaryKeys(false))->delete($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()) { \Thelia\Model\OrderAddressQuery::create()->filterByPrimaryKeys($this->orderAddressesScheduledForDeletion->getPrimaryKeys(false))->delete($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->couponCountriesScheduledForDeletion !== null) { if (!$this->couponCountriesScheduledForDeletion->isEmpty()) { \Thelia\Model\CouponCountryQuery::create()->filterByPrimaryKeys($this->couponCountriesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->couponCountriesScheduledForDeletion = null; } } if ($this->collCouponCountries !== null) { foreach ($this->collCouponCountries as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->orderCouponCountriesScheduledForDeletion !== null) { if (!$this->orderCouponCountriesScheduledForDeletion->isEmpty()) { \Thelia\Model\OrderCouponCountryQuery::create()->filterByPrimaryKeys($this->orderCouponCountriesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->orderCouponCountriesScheduledForDeletion = null; } } if ($this->collOrderCouponCountries !== null) { foreach ($this->collOrderCouponCountries as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->countryAreasScheduledForDeletion !== null) { if (!$this->countryAreasScheduledForDeletion->isEmpty()) { \Thelia\Model\CountryAreaQuery::create()->filterByPrimaryKeys($this->countryAreasScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->countryAreasScheduledForDeletion = null; } } if ($this->collCountryAreas !== null) { foreach ($this->collCountryAreas as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->statesScheduledForDeletion !== null) { if (!$this->statesScheduledForDeletion->isEmpty()) { \Thelia\Model\StateQuery::create()->filterByPrimaryKeys($this->statesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->statesScheduledForDeletion = null; } } if ($this->collStates !== null) { foreach ($this->collStates as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->countryI18nsScheduledForDeletion !== null) { if (!$this->countryI18nsScheduledForDeletion->isEmpty()) { \Thelia\Model\CountryI18nQuery::create()->filterByPrimaryKeys($this->countryI18nsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->countryI18nsScheduledForDeletion = null; } } if ($this->collCountryI18ns !== null) { foreach ($this->collCountryI18ns as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }
/** * 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; if ($this->isNew() || $this->isModified()) { // persist changes if ($this->isNew()) { $this->doInsert($con); } else { $this->doUpdate($con); } $affectedRows += 1; $this->resetModified(); } if ($this->countriesScheduledForDeletion !== null) { if (!$this->countriesScheduledForDeletion->isEmpty()) { $pks = array(); $pk = $this->getPrimaryKey(); foreach ($this->countriesScheduledForDeletion->getPrimaryKeys(false) as $remotePk) { $pks[] = array($remotePk, $pk); } CouponCountryQuery::create()->filterByPrimaryKeys($pks)->delete($con); $this->countriesScheduledForDeletion = null; } foreach ($this->getCountries() as $country) { if ($country->isModified()) { $country->save($con); } } } elseif ($this->collCountries) { foreach ($this->collCountries as $country) { if ($country->isModified()) { $country->save($con); } } } if ($this->modulesScheduledForDeletion !== null) { if (!$this->modulesScheduledForDeletion->isEmpty()) { $pks = array(); $pk = $this->getPrimaryKey(); foreach ($this->modulesScheduledForDeletion->getPrimaryKeys(false) as $remotePk) { $pks[] = array($pk, $remotePk); } CouponModuleQuery::create()->filterByPrimaryKeys($pks)->delete($con); $this->modulesScheduledForDeletion = null; } foreach ($this->getModules() as $module) { if ($module->isModified()) { $module->save($con); } } } elseif ($this->collModules) { foreach ($this->collModules as $module) { if ($module->isModified()) { $module->save($con); } } } if ($this->customersScheduledForDeletion !== null) { if (!$this->customersScheduledForDeletion->isEmpty()) { $pks = array(); $pk = $this->getPrimaryKey(); foreach ($this->customersScheduledForDeletion->getPrimaryKeys(false) as $remotePk) { $pks[] = array($remotePk, $pk); } CouponCustomerCountQuery::create()->filterByPrimaryKeys($pks)->delete($con); $this->customersScheduledForDeletion = null; } foreach ($this->getCustomers() as $customer) { if ($customer->isModified()) { $customer->save($con); } } } elseif ($this->collCustomers) { foreach ($this->collCustomers as $customer) { if ($customer->isModified()) { $customer->save($con); } } } if ($this->couponCountriesScheduledForDeletion !== null) { if (!$this->couponCountriesScheduledForDeletion->isEmpty()) { \Thelia\Model\CouponCountryQuery::create()->filterByPrimaryKeys($this->couponCountriesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->couponCountriesScheduledForDeletion = null; } } if ($this->collCouponCountries !== null) { foreach ($this->collCouponCountries as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->couponModulesScheduledForDeletion !== null) { if (!$this->couponModulesScheduledForDeletion->isEmpty()) { \Thelia\Model\CouponModuleQuery::create()->filterByPrimaryKeys($this->couponModulesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->couponModulesScheduledForDeletion = null; } } if ($this->collCouponModules !== null) { foreach ($this->collCouponModules as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->couponCustomerCountsScheduledForDeletion !== null) { if (!$this->couponCustomerCountsScheduledForDeletion->isEmpty()) { \Thelia\Model\CouponCustomerCountQuery::create()->filterByPrimaryKeys($this->couponCustomerCountsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->couponCustomerCountsScheduledForDeletion = null; } } if ($this->collCouponCustomerCounts !== null) { foreach ($this->collCouponCustomerCounts as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->couponI18nsScheduledForDeletion !== null) { if (!$this->couponI18nsScheduledForDeletion->isEmpty()) { \Thelia\Model\CouponI18nQuery::create()->filterByPrimaryKeys($this->couponI18nsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->couponI18nsScheduledForDeletion = null; } } if ($this->collCouponI18ns !== null) { foreach ($this->collCouponI18ns as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->couponVersionsScheduledForDeletion !== null) { if (!$this->couponVersionsScheduledForDeletion->isEmpty()) { \Thelia\Model\CouponVersionQuery::create()->filterByPrimaryKeys($this->couponVersionsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->couponVersionsScheduledForDeletion = null; } } if ($this->collCouponVersions !== null) { foreach ($this->collCouponVersions as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }
/** * 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->aArea !== null) { if ($this->aArea->isModified() || $this->aArea->isNew()) { $affectedRows += $this->aArea->save($con); } $this->setArea($this->aArea); } if ($this->isNew() || $this->isModified()) { // persist changes if ($this->isNew()) { $this->doInsert($con); } else { $this->doUpdate($con); } $affectedRows += 1; $this->resetModified(); } if ($this->couponsScheduledForDeletion !== null) { if (!$this->couponsScheduledForDeletion->isEmpty()) { $pks = array(); $pk = $this->getPrimaryKey(); foreach ($this->couponsScheduledForDeletion->getPrimaryKeys(false) as $remotePk) { $pks[] = array($pk, $remotePk); } CouponCountryQuery::create()->filterByPrimaryKeys($pks)->delete($con); $this->couponsScheduledForDeletion = null; } foreach ($this->getCoupons() as $coupon) { if ($coupon->isModified()) { $coupon->save($con); } } } elseif ($this->collCoupons) { foreach ($this->collCoupons as $coupon) { if ($coupon->isModified()) { $coupon->save($con); } } } if ($this->orderCouponsScheduledForDeletion !== null) { if (!$this->orderCouponsScheduledForDeletion->isEmpty()) { $pks = array(); $pk = $this->getPrimaryKey(); foreach ($this->orderCouponsScheduledForDeletion->getPrimaryKeys(false) as $remotePk) { $pks[] = array($pk, $remotePk); } OrderCouponCountryQuery::create()->filterByPrimaryKeys($pks)->delete($con); $this->orderCouponsScheduledForDeletion = null; } foreach ($this->getOrderCoupons() as $orderCoupon) { if ($orderCoupon->isModified()) { $orderCoupon->save($con); } } } elseif ($this->collOrderCoupons) { foreach ($this->collOrderCoupons as $orderCoupon) { if ($orderCoupon->isModified()) { $orderCoupon->save($con); } } } 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()) { \Thelia\Model\AddressQuery::create()->filterByPrimaryKeys($this->addressesScheduledForDeletion->getPrimaryKeys(false))->delete($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()) { \Thelia\Model\OrderAddressQuery::create()->filterByPrimaryKeys($this->orderAddressesScheduledForDeletion->getPrimaryKeys(false))->delete($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->couponCountriesScheduledForDeletion !== null) { if (!$this->couponCountriesScheduledForDeletion->isEmpty()) { \Thelia\Model\CouponCountryQuery::create()->filterByPrimaryKeys($this->couponCountriesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->couponCountriesScheduledForDeletion = null; } } if ($this->collCouponCountries !== null) { foreach ($this->collCouponCountries as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->orderCouponCountriesScheduledForDeletion !== null) { if (!$this->orderCouponCountriesScheduledForDeletion->isEmpty()) { \Thelia\Model\OrderCouponCountryQuery::create()->filterByPrimaryKeys($this->orderCouponCountriesScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->orderCouponCountriesScheduledForDeletion = null; } } if ($this->collOrderCouponCountries !== null) { foreach ($this->collOrderCouponCountries as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } if ($this->countryI18nsScheduledForDeletion !== null) { if (!$this->countryI18nsScheduledForDeletion->isEmpty()) { \Thelia\Model\CountryI18nQuery::create()->filterByPrimaryKeys($this->countryI18nsScheduledForDeletion->getPrimaryKeys(false))->delete($con); $this->countryI18nsScheduledForDeletion = null; } } if ($this->collCountryI18ns !== null) { foreach ($this->collCountryI18ns as $referrerFK) { if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; }