Example #1
0
 public function executeEdit($request)
 {
     $this->responsable = $this->getResponsableOrCreate();
     $datosCuenta = "";
     if ($this->getRequestParameter("fk_cuenta_id")) {
         $datosCuenta = CuentaPeer::retrieveByPk($this->getRequestParameter("fk_cuenta_id"));
     }
     if ($this->responsable->getFkCuentaId()) {
         $datosCuenta = CuentaPeer::retrieveByPk($this->responsable->getFkCuentaId());
     }
     $this->datosCuenta = $datosCuenta;
     if ($this->getRequest()->getMethod() == sfRequest::POST) {
         $this->responsable = $this->getResponsableOrCreate();
         $this->updateResponsableFromRequest();
         $this->saveResponsable($this->responsable);
         $this->getUser()->setFlash('notice', 'Your modifications have been saved');
         if ($this->getRequestParameter('save_and_add')) {
             //el save_and_add debe volver al create pero pasando la cuenta actual
             return $this->redirect('responsable/create?fk_cuenta_id=' . $this->responsable->getFkCuentaId());
         } else {
             return $this->redirect('responsable/edit?id=' . $this->responsable->getId());
         }
     } else {
         // add javascripts
         $this->getResponse()->addJavascript(sfConfig::get('sf_prototype_web_dir') . '/js/prototype');
         $this->getResponse()->addJavascript(sfConfig::get('sf_admin_web_dir') . '/js/collapse');
         if ($this->getRequestParameter('fk_cuenta_id')) {
             $this->responsable->setFkCuentaId($this->getRequestParameter('fk_cuenta_id'));
         }
     }
 }
Example #2
0
 public function executeAutocompletar()
 {
     $txt_cuenta = $this->getRequestParameter('txt_cuenta');
     $criteria = new Criteria();
     $criteria->add(CuentaPeer::NOMBRE, "{$txt_cuenta}%", Criteria::LIKE);
     $cuentas = CuentaPeer::doSelect($criteria);
     $this->forward404Unless($cuentas);
     $this->aCuenta = $cuentas;
 }
 /**
  * Ejecuta la validación del cuenta.
  *
  * @param value A file or parameter value/array.
  * @param error An error message reference.
  *
  * @return bool verdadero, si ha pasado con éxtio la validación, de lo contrario falso.
  */
 public function execute(&$value, &$error)
 {
     $campo_param1 = $this->getParameterHolder()->get('campo');
     $cuenta = $this->getContext()->getRequest()->getParameter('cuenta');
     $campo_param = $this->getParameterHolder()->get('campo_id');
     $id = $this->getContext()->getRequest()->getParameter($campo_param);
     $c = new Criteria();
     $c->add(CuentaPeer::NOMBRE, $cuenta["{$campo_param1}"], Criteria::EQUAL);
     $cuentas = CuentaPeer::doSelectOne($c);
     // existe o no el mismo usuario en la DB
     if ($cuentas) {
         if ($cuentas->getNombre() == $cuenta["{$campo_param1}"] and $id == $cuentas->getId()) {
             return true;
         } else {
             $error = $this->getParameterHolder()->get('cuenta_error');
             return false;
         }
     } else {
         return true;
     }
 }
Example #4
0
<?php

$c = new Criteria();
$c->AddAscendingOrderByColumn(CuentaPeer::NOMBRE);
$cuentas = CuentaPeer::doSelect($c);
$optCuenta[""] = "";
foreach ($cuentas as $cuenta) {
    $optCuenta[$cuenta->getId()] = $cuenta->getNombre();
}
echo select_tag('alumno[fk_cuenta_id]', options_for_select($optCuenta, $alumno->getFkCuentaId()));
Example #5
0
 /**
  * @param array $aVariable
  * @returns array
  */
 private function llenarVariables($aVariable)
 {
     $aDato = array();
     foreach ($aVariable as $idx => $result) {
         //Recorrer las variables
         switch ($idx) {
             // me fijo que variables debo enviar al template de resultado
             case 'cuenta':
                 if (array_key_exists('loop', $result) and $result['loop'] == 1) {
                     $criteria = new Criteria();
                     $cuentas = CuentaPeer::doSelect($criteria);
                     foreach ($cuentas as $cuenta) {
                         $aDato['cuenta'][] = $cuenta->toArray();
                     }
                 } else {
                     if ($this->getRequestParameter('cuenta_id')) {
                         $cuenta = CuentaPeer::retrieveByPk($this->getRequestParameter('cuenta_id'));
                         $aDato['cuenta'] = $cuenta->toArray();
                     }
                 }
                 break;
             case 'responsable':
                 if (array_key_exists('loop', $result) and $result['loop'] == 1) {
                     $criteria = new Criteria();
                     if ($this->getRequestParameter('fk_cuenta_id')) {
                         $criteria->add(ResponsablePeer::FK_CUENTA_ID, $this->getRequestParameter('fk_cuenta_id'));
                     }
                     $responsables = ResponsablePeer::doSelect($criteria);
                     foreach ($responsables as $responsable) {
                         $aDato['responsable'][] = $responsable->toArray();
                     }
                 } else {
                     if ($this->getRequestParameter('responsable_id')) {
                         $responsable = ResponsablePeer::retrieveByPk($this->getRequestParameter('responsable_id'));
                         $aDato['responsable'] = $responsable->toArray();
                     }
                 }
                 break;
             case 'alumno':
                 //dependiendo si es una variables de cilcos
                 if (array_key_exists('loop', $result) and $result['loop'] == 1) {
                     $criteria = new Criteria();
                     if ($this->getRequestParameter('division_id')) {
                         $criteria->add(DivisionPeer::ID, $this->getRequestParameter('division_id'));
                     }
                     if ($this->getRequestParameter('fk_cuenta_id')) {
                         $criteria->add(AlumnoPeer::FK_CUENTA_ID, $this->getRequestParameter('fk_cuenta_id'));
                     }
                     $criteria->addJoin(RelAlumnoDivisionPeer::FK_ALUMNO_ID, AlumnoPeer::ID);
                     $criteria->addJoin(RelAlumnoDivisionPeer::FK_DIVISION_ID, DivisionPeer::ID);
                     $criteria->addAscendingOrderByColumn(AlumnoPeer::APELLIDO);
                     $alumnos = AlumnoPeer::doSelect($criteria);
                     foreach ($alumnos as $alumno) {
                         $aDato['alumno'][] = $alumno->toArrayInforme();
                     }
                 } else {
                     if ($this->getRequestParameter('alumno_id')) {
                         $alumno = AlumnoPeer::retrieveByPk($this->getRequestParameter('alumno_id'));
                         $aDato['alumno'] = $alumno->toArrayInforme();
                     }
                 }
                 break;
             case 'division':
                 if ($this->getRequestParameter('division_id')) {
                     $d = DivisionPeer::retrieveByPK($this->getRequestParameter('division_id'));
                 } else {
                     $c = new Criteria();
                     $c->add(RelAlumnoDivisionPeer::FK_ALUMNO_ID, $this->getRequestParameter('alumno_id'));
                     $relAlumnoDivision = RelAlumnoDivisionPeer::doSelectOne($c);
                     $d = $relAlumnoDivision->getDivision();
                 }
                 $aDato['division'] = $d->toArrayInforme();
                 break;
             case 'establecimiento':
                 if ($this->getUser()->getAttribute('fk_establecimiento_id')) {
                     $establecimiento = EstablecimientoPeer::retrieveByPk($this->getUser()->getAttribute('fk_establecimiento_id'));
                     $aDato['establecimiento'] = $establecimiento->toArrayInforme();
                 }
                 break;
             case 'ciclolectivo':
                 if ($this->getUser()->getAttribute('fk_ciclolectivo_id')) {
                     $ciclolectivo_id = $this->getUser()->getAttribute('fk_ciclolectivo_id');
                     $ciclolectivo = CiclolectivoPeer::retrieveByPk($ciclolectivo_id);
                     $aDato['ciclolectivo'] = $ciclolectivo->toArray();
                 }
                 break;
             case 'locacion':
                 if (array_key_exists('loop', $result) and $result['loop'] == 1 and $this->getUser()->getAttribute('fk_establecimiento_id')) {
                     $c = new Criteria();
                     $c->add(RelEstablecimientoLocacionPeer::FK_ESTABLECIMIENTO_ID, $this->getUser()->getAttribute('fk_establecimiento_id'));
                     $c->addJoin(RelEstablecimientoLocacionPeer::FK_LOCACION_ID, LocacionPeer::ID);
                     $locaciones = LocacionPeer::doSelect($c);
                     foreach ($locaciones as $locacion) {
                         $aDato['locacion'][] = $locacion->toArray();
                     }
                 } else {
                     if ($this->getRequestParameter('locacion_id')) {
                         $c = new Criteria();
                         $c->add(LocacionPeer::ID, $this->getRequestParameter('locacion_id'));
                         $locacion = LocacionPeer::doSelect($c);
                         $aDato['locacion'] = $locacion->toArray();
                     }
                 }
                 break;
             case 'espacio':
                 if (array_key_exists('loop', $result) and $result['loop'] == 1 and $this->getUser()->getAttribute('fk_establecimiento_id')) {
                     $c = new Criteria();
                     $c->add(RelEstablecimientoLocacionPeer::FK_ESTABLECIMIENTO_ID, $this->getUser()->getAttribute('fk_establecimiento_id'));
                     $c->addJoin(RelEstablecimientoLocacionPeer::FK_LOCACION_ID, LocacionPeer::ID);
                     if ($this->getRequestParameter('locacion_id')) {
                         $c->add(LocacionPeer::ID, $this->getRequestParameter('locacion_id'));
                     }
                     $c->addJoin(EspacioPeer::FK_LOCACION_ID, LocacionPeer::ID);
                     $espacios = EspacioPeer::doSelect($c);
                     foreach ($espacios as $espacio) {
                         $aDato['espacio'][] = $espacio->toArray();
                     }
                 } else {
                     if ($this->getRequestParameter('espacio_id')) {
                         $c = new Criteria();
                         $c->add(EspacioPeer::ID, $this->getRequestParameter('espacio_id'));
                         $espacio = EspacioPeer::doSelect($c);
                         $aDato['espacio'] = $espacio->toArray();
                     }
                 }
                 break;
             case 'organizacion':
                 if ($this->getUser()->getAttribute('fk_establecimiento_id')) {
                     $c = new Criteria();
                     $c->add(EstablecimientoPeer::ID, $this->getUser()->getAttribute('fk_establecimiento_id'));
                     $c->addJoin(EstablecimientoPeer::FK_ORGANIZACION_ID, OrganizacionPeer::ID);
                     $organizacion = OrganizacionPeer::doSelectOne($c);
                     $aDato['organizacion'] = $organizacion->toArray();
                 }
                 break;
             case 'usuario':
                 if ($this->getUser()->getAttribute('id')) {
                     $usuario = UsuarioPeer::retrieveByPk($this->getUser()->getAttribute('id'));
                     $aUsuario = $usuario->toArray();
                     //por seguridad: para no mostrar otros datos del usuario como clave, preguntas, etc
                     $aDato['usuario'] = array('Usuario' => $aUsuario['Usuario'], 'Email' => $aUsuario['Email']);
                 }
                 break;
             case 'docente':
                 if (array_key_exists('loop', $result) and $result['loop'] == 1) {
                     $c = new Criteria();
                     $docentes = DocentePeer::doSelect($c);
                     foreach ($docentes as $docente) {
                         $aDato['docente'][] = $docente->toArray();
                     }
                 } else {
                     if ($this->getRequestParameter('docente_id')) {
                         $docente = DocentePeer::retrieveByPK($this->getRequestParameter('docente_id'));
                         $aDato['docente'] = $docente->toArray();
                     }
                 }
                 break;
             case 'boletin':
                 break;
             default:
         }
     }
     return $aDato;
 }
Example #6
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = CuentaPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setNombre($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setRazonSocial($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setCuit($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setDireccion($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setCiudad($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setCodigoPostal($arr[$keys[6]]);
     }
     if (array_key_exists($keys[7], $arr)) {
         $this->setTelefono($arr[$keys[7]]);
     }
     if (array_key_exists($keys[8], $arr)) {
         $this->setFkProvinciaId($arr[$keys[8]]);
     }
     if (array_key_exists($keys[9], $arr)) {
         $this->setFkTipoivaId($arr[$keys[9]]);
     }
 }
Example #7
0
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(CuentaPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CuentaPeer::DATABASE_NAME);
         $criteria->add(CuentaPeer::ID, $pks, Criteria::IN);
         $objs = CuentaPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Example #8
0
 public function getCuenta(PropelPDO $con = null)
 {
     if ($this->aCuenta === null && $this->fk_cuenta_id !== null) {
         $c = new Criteria(CuentaPeer::DATABASE_NAME);
         $c->add(CuentaPeer::ID, $this->fk_cuenta_id);
         $this->aCuenta = CuentaPeer::doSelectOne($c, $con);
     }
     return $this->aCuenta;
 }
Example #9
0
 public function getCuentasJoinTipoiva($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     if ($criteria === null) {
         $criteria = new Criteria(ProvinciaPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collCuentas === null) {
         if ($this->isNew()) {
             $this->collCuentas = array();
         } else {
             $criteria->add(CuentaPeer::FK_PROVINCIA_ID, $this->id);
             $this->collCuentas = CuentaPeer::doSelectJoinTipoiva($criteria, $con, $join_behavior);
         }
     } else {
         $criteria->add(CuentaPeer::FK_PROVINCIA_ID, $this->id);
         if (!isset($this->lastCuentaCriteria) || !$this->lastCuentaCriteria->equals($criteria)) {
             $this->collCuentas = CuentaPeer::doSelectJoinTipoiva($criteria, $con, $join_behavior);
         }
     }
     $this->lastCuentaCriteria = $criteria;
     return $this->collCuentas;
 }
Example #10
0
 public static function doSelectJoinAllExceptNivelInstruccion(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     ResponsablePeer::addSelectColumns($c);
     $startcol2 = ResponsablePeer::NUM_COLUMNS - ResponsablePeer::NUM_LAZY_LOAD_COLUMNS;
     ProvinciaPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (ProvinciaPeer::NUM_COLUMNS - ProvinciaPeer::NUM_LAZY_LOAD_COLUMNS);
     TipodocumentoPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + (TipodocumentoPeer::NUM_COLUMNS - TipodocumentoPeer::NUM_LAZY_LOAD_COLUMNS);
     CuentaPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + (CuentaPeer::NUM_COLUMNS - CuentaPeer::NUM_LAZY_LOAD_COLUMNS);
     RolResponsablePeer::addSelectColumns($c);
     $startcol6 = $startcol5 + (RolResponsablePeer::NUM_COLUMNS - RolResponsablePeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(ResponsablePeer::FK_PROVINCIA_ID), array(ProvinciaPeer::ID), $join_behavior);
     $c->addJoin(array(ResponsablePeer::FK_TIPODOCUMENTO_ID), array(TipodocumentoPeer::ID), $join_behavior);
     $c->addJoin(array(ResponsablePeer::FK_CUENTA_ID), array(CuentaPeer::ID), $join_behavior);
     $c->addJoin(array(ResponsablePeer::FK_ROLRESPONSABLE_ID), array(RolResponsablePeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = ResponsablePeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = ResponsablePeer::getInstanceFromPool($key1))) {
         } else {
             $omClass = ResponsablePeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             ResponsablePeer::addInstanceToPool($obj1, $key1);
         }
         $key2 = ProvinciaPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = ProvinciaPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = ProvinciaPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 ProvinciaPeer::addInstanceToPool($obj2, $key2);
             }
             $obj2->addResponsable($obj1);
         }
         $key3 = TipodocumentoPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = TipodocumentoPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $omClass = TipodocumentoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 TipodocumentoPeer::addInstanceToPool($obj3, $key3);
             }
             $obj3->addResponsable($obj1);
         }
         $key4 = CuentaPeer::getPrimaryKeyHashFromRow($row, $startcol4);
         if ($key4 !== null) {
             $obj4 = CuentaPeer::getInstanceFromPool($key4);
             if (!$obj4) {
                 $omClass = CuentaPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj4 = new $cls();
                 $obj4->hydrate($row, $startcol4);
                 CuentaPeer::addInstanceToPool($obj4, $key4);
             }
             $obj4->addResponsable($obj1);
         }
         $key5 = RolResponsablePeer::getPrimaryKeyHashFromRow($row, $startcol5);
         if ($key5 !== null) {
             $obj5 = RolResponsablePeer::getInstanceFromPool($key5);
             if (!$obj5) {
                 $omClass = RolResponsablePeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj5 = new $cls();
                 $obj5->hydrate($row, $startcol5);
                 RolResponsablePeer::addInstanceToPool($obj5, $key5);
             }
             $obj5->addResponsable($obj1);
         }
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Example #11
0
 public static function doSelectJoinAllExceptEstadosalumnos(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     AlumnoPeer::addSelectColumns($c);
     $startcol2 = AlumnoPeer::NUM_COLUMNS - AlumnoPeer::NUM_LAZY_LOAD_COLUMNS;
     ProvinciaPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (ProvinciaPeer::NUM_COLUMNS - ProvinciaPeer::NUM_LAZY_LOAD_COLUMNS);
     TipodocumentoPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + (TipodocumentoPeer::NUM_COLUMNS - TipodocumentoPeer::NUM_LAZY_LOAD_COLUMNS);
     EstablecimientoPeer::addSelectColumns($c);
     $startcol5 = $startcol4 + (EstablecimientoPeer::NUM_COLUMNS - EstablecimientoPeer::NUM_LAZY_LOAD_COLUMNS);
     CuentaPeer::addSelectColumns($c);
     $startcol6 = $startcol5 + (CuentaPeer::NUM_COLUMNS - CuentaPeer::NUM_LAZY_LOAD_COLUMNS);
     ConceptobajaPeer::addSelectColumns($c);
     $startcol7 = $startcol6 + (ConceptobajaPeer::NUM_COLUMNS - ConceptobajaPeer::NUM_LAZY_LOAD_COLUMNS);
     PaisPeer::addSelectColumns($c);
     $startcol8 = $startcol7 + (PaisPeer::NUM_COLUMNS - PaisPeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(AlumnoPeer::FK_PROVINCIA_ID), array(ProvinciaPeer::ID), $join_behavior);
     $c->addJoin(array(AlumnoPeer::FK_TIPODOCUMENTO_ID), array(TipodocumentoPeer::ID), $join_behavior);
     $c->addJoin(array(AlumnoPeer::FK_ESTABLECIMIENTO_ID), array(EstablecimientoPeer::ID), $join_behavior);
     $c->addJoin(array(AlumnoPeer::FK_CUENTA_ID), array(CuentaPeer::ID), $join_behavior);
     $c->addJoin(array(AlumnoPeer::FK_CONCEPTOBAJA_ID), array(ConceptobajaPeer::ID), $join_behavior);
     $c->addJoin(array(AlumnoPeer::FK_PAIS_ID), array(PaisPeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = AlumnoPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = AlumnoPeer::getInstanceFromPool($key1))) {
         } else {
             $omClass = AlumnoPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             AlumnoPeer::addInstanceToPool($obj1, $key1);
         }
         $key2 = ProvinciaPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = ProvinciaPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = ProvinciaPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 ProvinciaPeer::addInstanceToPool($obj2, $key2);
             }
             $obj2->addAlumno($obj1);
         }
         $key3 = TipodocumentoPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = TipodocumentoPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $omClass = TipodocumentoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 TipodocumentoPeer::addInstanceToPool($obj3, $key3);
             }
             $obj3->addAlumno($obj1);
         }
         $key4 = EstablecimientoPeer::getPrimaryKeyHashFromRow($row, $startcol4);
         if ($key4 !== null) {
             $obj4 = EstablecimientoPeer::getInstanceFromPool($key4);
             if (!$obj4) {
                 $omClass = EstablecimientoPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj4 = new $cls();
                 $obj4->hydrate($row, $startcol4);
                 EstablecimientoPeer::addInstanceToPool($obj4, $key4);
             }
             $obj4->addAlumno($obj1);
         }
         $key5 = CuentaPeer::getPrimaryKeyHashFromRow($row, $startcol5);
         if ($key5 !== null) {
             $obj5 = CuentaPeer::getInstanceFromPool($key5);
             if (!$obj5) {
                 $omClass = CuentaPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj5 = new $cls();
                 $obj5->hydrate($row, $startcol5);
                 CuentaPeer::addInstanceToPool($obj5, $key5);
             }
             $obj5->addAlumno($obj1);
         }
         $key6 = ConceptobajaPeer::getPrimaryKeyHashFromRow($row, $startcol6);
         if ($key6 !== null) {
             $obj6 = ConceptobajaPeer::getInstanceFromPool($key6);
             if (!$obj6) {
                 $omClass = ConceptobajaPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj6 = new $cls();
                 $obj6->hydrate($row, $startcol6);
                 ConceptobajaPeer::addInstanceToPool($obj6, $key6);
             }
             $obj6->addAlumno($obj1);
         }
         $key7 = PaisPeer::getPrimaryKeyHashFromRow($row, $startcol7);
         if ($key7 !== null) {
             $obj7 = PaisPeer::getInstanceFromPool($key7);
             if (!$obj7) {
                 $omClass = PaisPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj7 = new $cls();
                 $obj7->hydrate($row, $startcol7);
                 PaisPeer::addInstanceToPool($obj7, $key7);
             }
             $obj7->addAlumno($obj1);
         }
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
Example #12
0
 public function executeSeleccionarCuenta()
 {
     $id_cuenta = $this->getRequestParameter("id");
     $this->cuenta = CuentaPeer::retrieveByPk($id_cuenta);
 }