/**
  * Delete customer
  *
  * @param \Symfony\Component\HttpFoundation\Request $request
  * @param                                           $id
  *
  * @return \Symfony\Component\HttpFoundation\RedirectResponse
  */
 public function deleteAction(Request $request, $id)
 {
     /** @var Customer $oCustomer */
     $oCustomer = CustomerQuery::create()->findOneById($id);
     if ($oCustomer === null) {
         throw $this->createNotFoundException('Unable to find Customer entity.');
     }
     $oCustomer->delete();
     return $this->redirect($this->generateUrl('backend_system_customer'));
 }
 /**
  * Get the associated Customer object
  *
  * @param PropelPDO $con Optional Connection object.
  * @param $doQuery Executes a query to get the object if required
  * @return Customer The associated Customer object.
  * @throws PropelException
  */
 public function getCustomer(PropelPDO $con = null, $doQuery = true)
 {
     if ($this->aCustomer === null && $this->customer_id !== null && $doQuery) {
         $this->aCustomer = CustomerQuery::create()->findPk($this->customer_id, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aCustomer->addUserCustomerRelations($this);
            */
     }
     return $this->aCustomer;
 }
 /**
  * Returns the number of related Customer objects.
  *
  * @param Criteria $criteria
  * @param boolean $distinct
  * @param PropelPDO $con
  * @return int             Count of related Customer objects.
  * @throws PropelException
  */
 public function countCustomers(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     $partial = $this->collCustomersPartial && !$this->isNew();
     if (null === $this->collCustomers || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collCustomers) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getCustomers());
         }
         $query = CustomerQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByCountry($this)->count($con);
     }
     return count($this->collCustomers);
 }
 /**
  * Returns a new CustomerQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   CustomerQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return CustomerQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof CustomerQuery) {
         return $criteria;
     }
     $query = new CustomerQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param PropelPDO $con
  * @return void
  * @throws PropelException
  * @throws Exception
  * @see        BaseObject::setDeleted()
  * @see        BaseObject::isDeleted()
  */
 public function delete(PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(CustomerPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = CustomerQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }