コード例 #1
0
 /**
  * Returns a new ExpedienteQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   ExpedienteQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return ExpedienteQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof ExpedienteQuery) {
         return $criteria;
     }
     $query = new ExpedienteQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
コード例 #2
0
 public function eliminarAction()
 {
     $request = $this->getRequest();
     $id = $this->params()->fromRoute('id');
     if ($request->isPost()) {
         $id = $request->getPost('id');
         $entity = \ExpedienteQuery::create()->findPk($id);
         $entity->delete();
         $this->flashMessenger()->addSuccessMessage('Registro eliminado exitosamente!');
         return $this->getResponse()->setContent(json_encode(true));
     }
     $viewModel = new ViewModel();
     $viewModel->setTerminal(true);
     $viewModel->setTemplate('admin/expedientes/expedientes/eliminar');
     return $viewModel;
 }
コード例 #3
0
 public function editaranticipoAction()
 {
     $request = $this->getRequest();
     $id = $this->params()->fromQuery('id');
     $moneda = $this->params()->fromQuery('moneda');
     $entity = \ExpedienteanticipoQuery::create()->findPk($id);
     $expediente = \ExpedienteQuery::create()->findPk($entity->getIdexpediente());
     $form = new \Admin\Clientes\Form\ExpedienteanticipoForm($expediente->getIdexpediente(), $moneda);
     $form->setData($entity->toArray(\BasePeer::TYPE_FIELDNAME));
     $form->get('expedienteanticipo_fecha')->setValue($entity->getExpedienteanticipoFecha('d/m/Y'));
     //Enviamos a la vista
     $view_model = new ViewModel();
     $view_model->setTerminal(true)->setVariable('form', $form)->setVariable('entity', $expediente)->setTemplate('/clientes/expedientes/modal/editaranticipo');
     return $view_model;
 }
コード例 #4
0
 /**
  * Get the associated Expediente object
  *
  * @param PropelPDO $con Optional Connection object.
  * @param $doQuery Executes a query to get the object if required
  * @return Expediente The associated Expediente object.
  * @throws PropelException
  */
 public function getExpediente(PropelPDO $con = null, $doQuery = true)
 {
     if ($this->aExpediente === null && $this->idexpediente !== null && $doQuery) {
         $this->aExpediente = ExpedienteQuery::create()->findPk($this->idexpediente, $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->aExpediente->addExpedientearchivos($this);
            */
     }
     return $this->aExpediente;
 }
コード例 #5
0
ファイル: BaseCliente.php プロジェクト: vicbaporu/ITRADE
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Cliente is new, it will return
  * an empty collection; or if this Cliente has previously
  * been saved, it will retrieve related Expedientes 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 Cliente.
  *
  * @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|Expediente[] List of Expediente objects
  */
 public function getExpedientesJoinProveedorcliente($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $query = ExpedienteQuery::create(null, $criteria);
     $query->joinWith('Proveedorcliente', $join_behavior);
     return $this->getExpedientes($query, $con);
 }
コード例 #6
0
ファイル: BaseExpediente.php プロジェクト: vicbaporu/ITRADE
 /**
  * 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(ExpedientePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = ExpedienteQuery::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;
     }
 }