/**
  * Returns a new ExpedienteservicioQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   ExpedienteservicioQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return ExpedienteservicioQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof ExpedienteservicioQuery) {
         return $criteria;
     }
     $query = new ExpedienteservicioQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Пример #2
0
 /**
  * Get the associated Expedienteservicio object
  *
  * @param PropelPDO $con Optional Connection object.
  * @param $doQuery Executes a query to get the object if required
  * @return Expedienteservicio The associated Expedienteservicio object.
  * @throws PropelException
  */
 public function getExpedienteservicio(PropelPDO $con = null, $doQuery = true)
 {
     if ($this->aExpedienteservicio === null && $this->idexpedienteservicio !== null && $doQuery) {
         $this->aExpedienteservicio = ExpedienteservicioQuery::create()->findPk($this->idexpedienteservicio, $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->aExpedienteservicio->addExpedientehistorials($this);
            */
     }
     return $this->aExpedienteservicio;
 }
Пример #3
0
 public function eliminarservicioAction()
 {
     $request = $this->getRequest();
     if ($request->isPost()) {
         $id = $request->getPost('id');
         $entity = \ExpedienteservicioQuery::create()->findPk($id);
         $entity->delete();
         //Agregamos un mensaje
         $this->flashMessenger()->addSuccessMessage('Registro eliminado exitosamente!');
         if ($entity->isDeleted()) {
             return $this->getResponse()->setContent(json_encode(true));
         }
     }
     $id = $this->params()->fromQuery('id');
     //RETORNAMOS A NUESTRA VISTA
     $view_model = new ViewModel();
     $view_model->setTerminal(true);
     $view_model->setTemplate('/clientes/expedientes/modal/eliminarhistorial');
     return $view_model;
 }
Пример #4
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Servicio is new, it will return
  * an empty collection; or if this Servicio has previously
  * been saved, it will retrieve related Expedienteservicios from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in Servicio.
  *
  * @param Criteria $criteria optional Criteria object to narrow the query
  * @param PropelPDO $con optional connection object
  * @param string $join_behavior optional join type to use (defaults to Criteria::LEFT_JOIN)
  * @return PropelObjectCollection|Expedienteservicio[] List of Expedienteservicio objects
  */
 public function getExpedienteserviciosJoinExpediente($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $query = ExpedienteservicioQuery::create(null, $criteria);
     $query->joinWith('Expediente', $join_behavior);
     return $this->getExpedienteservicios($query, $con);
 }
Пример #5
0
 /**
  * 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(ExpedienteservicioPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = ExpedienteservicioQuery::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;
     }
 }